【发布时间】:2011-03-12 23:03:54
【问题描述】:
如何让某人通过 facebook API 在他/她朋友的墙上发帖,类似于 instagr.am iPhone 应用程序让您可以在自己的墙上发帖?
- 如何显示好友列表并允许选择?
- 如何同时发布文字、图片和链接?
【问题讨论】:
如何让某人通过 facebook API 在他/她朋友的墙上发帖,类似于 instagr.am iPhone 应用程序让您可以在自己的墙上发帖?
【问题讨论】:
碰巧,Facebook 有 an iOS SDK available,以及如何使用 post feed items 的说明(通过交互式对话框或他们的 Graph API)。
【讨论】:
我就是这样做的。它工作得很好。你也可以为多个朋友发帖。
NSMutableDictionary* params1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:
<appId>, @"api_key",
@"Happy Birthday....", @"message",
@"http://www.youtube.com/watch?v=wFh-rX_Sfhs", @"link",
@"http://www.99desi.com/wp-content/uploads/2011/03/Happy-Birthday.jpg", @"picture",
@"Many More Happy returns Of the Day...", @"name",
@" Believing hear, what you deserve to hear..", @"description",nil];
[facebook requestWithGraphPath:@"<frnd-ID>/feed" andParams:params1 andHttpMethod:@"POST" andDelegate:self];
您可以重复上述步骤以将相同的内容发布给多个朋友。
希望对你有帮助...
【讨论】: