私のiOSアプリでは、facebookSDK3.1を使用してユーザーウォールに投稿したいと思います。さらに、可能であれば権限の使用を避けたいと思います。
質問する
2341 次
1 に答える
3
GraphAPIの使用http://developers.facebook.com/docs/reference/dialogs/feed/から
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
kAppId, @"app_id",
@"http://developers.facebook.com/docs/reference/dialogs/", @"link",
@"http://fbrell.com/f8.jpg", @"picture",
@"Facebook Dialogs", @"name",
@"Reference Documentation", @"caption",
@"Dialogs provide a simple, consistent interface for apps to interact with users.", @"description",
@"Facebook Dialogs are so easy!", @"message",
nil];
[_facebook dialog:@"feed" andParams:params andDelegate:self];
于 2012-12-11T06:55:21.163 に答える