我已将 facebook 与我的应用程序集成在一起,并且连接良好。问题是我发布的内容在我浏览时不可见,但我的朋友可以看到该消息。有什么问题?
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"123456789", @"app_id",
@"https://developers.facebook.com/docs/reference/dialogs/", @"link",
@"http://fbrell.com/f8.jpg", @"picture",
@"Facebook Dialogs", @"name",
@"Reference Documentation", @"caption",
@"Using Dialogs to interact with users.", @"description",
@"Facebook Dialogs are so easy!", @"message",
nil];
[facebook dialog:@"feed" andParams:params andDelegate:self];
用我的应用程序 ID 替换 1234567。有什么问题?