In my iOS application, I am trying to implement Facebook but am running into a problem. I currently have the user logging in as well as I have implemented the friend picker. I am looking to now have it so when the user taps a friend it will show their status(last post in their feed. e.g.."In NYC on broadway!"). I did a lot of research online but am getting very confused. If someone could point me to good tutorial or could just explain this that would be great. I believe I have to use open graph but other then Facebook's tutorials I can't find any. Are there any tutorials other than on FB?
问问题
842 次
2 回答
1
/<userId>/feed
您可以通过调用( https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Ffeed )访问用户的提要。然后,查找data
数组 where的第一个元素"type": "status"
。
于 2013-04-01T02:29:53.067 回答