开发者

iPhone - Post on Friends wall

开发者 https://www.devze.com 2023-01-18 05:03 出处:网络
hi I am using FBConnect to post on users wall.... But is there a way I can po开发者_如何学编程st on friends wall??

hi I am using FBConnect to post on users wall.... But is there a way I can po开发者_如何学编程st on friends wall??

Any help is appreciated


Due to many of errors and many of negative comment about Open Graph API in facebook ios 6. facebook remove the " Post to friends wall via the API ". You can only use the fbconnect of ios 5.

 NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                           @"100004925467891", @"to",
                           @"http://pri.com/pit.png", @"picture",
                           @"http://pr.com", @"link",
                           @"Data", @"caption",
                           @"data",@"description",
                           @"Birthday Reminder",@"name",nil];
[[delegate facebook] dialog:@"feed" andParams:params andDelegate:self];

But if u Post to own wall Open Graph API is still working.


I don't believe you can post onto walls from the API, but you can publish to their Stream.

0

精彩评论

暂无评论...
验证码 换一张
取 消