posting on friends facebook wall using Iphone application

江枫思渺然 提交于 2019-12-12 06:49:21

问题


I want to make an iPhone application through which users can post on their friends wall, i know how to post on my own wall but can't post on friends wall.

What do I need to do to get the desired result for Facebook?


回答1:


first time get friend get friend list

[_facebook requestWithGraphPath:@"me/friends" andDelegate:self];

then select friend and post his/her wall

 [_facebook requestWithGraphPath:@"frined_ID/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];


来源:https://stackoverflow.com/questions/5906052/posting-on-friends-facebook-wall-using-iphone-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!