I want to get facebook friendlist on my table in Iphone Application.I am using IOS 5.
Is Graph API support to IOS 5 to get facebook friendlist? or any other way to do that work.
Please suggest me. Thanks
You can use the Graph API for getting the user's friend list..
// get the logged-in user's friends
[facebook requestWithGraphPath:#"me/friends" andDelegate:self];
You can check the below link on developer.facebook.com . It explains the steps in details.
https://developers.facebook.com/docs/mobile/ios/build/#register
But before that I think there should be a lof if existing questions on the stackoverflow for the same ....
Related
I'm trying to get Facebook albums photos using graph API, but the issue is that i can only fetch the albums photos for the account(deepak#triusmail.com) by which I have created App.
If I try to login from this account then I can fetch the details but if I go for other Facebook account then It will not work.
Can anybody have time to look into this
Please review the response in console after login.
I found an answer that If our app was created after April 30th 2014, then we have to get our app reviewed by Facebook to gather albums photos.
https://developers.facebook.com/docs/apps/upgrading#upgrading_v2_0_login
https://developers.facebook.com/docs/apps/changelog#v2_0_permissions
Thanks
I want to get friend list from facebook by using facebook api. Is it working or not. Can you help me by giving accurate information ?
You are only able to get the friends list who are using your facebook application.
I have login successfully with Google plus API in my iPhone App.Now i want to fetch my all friends with name ,id and birthday.
Can anyone please help me.
Thanks in advance.
Bad luck.. With my current experience google doesn't have any API's to retrieve data related to friends.
Refer these.
How to fetch Google+ friends in Android
google+ api person's friends
Get google plus user friends
Have you tried this API method?
queryForPeopleListWithUserId:collection:
Source: https://developers.google.com/+/mobile/ios/people
Is this possible to retrieve Facebook user Friend new feed on UItableView in ios Application using OAuth or any other technique.?
Like we can retrieve Twitter news feed using the below code.
http://www.icodeblog.com/2010/09/16/dealing-with-the-twitter-oauth-apocalypse/
Is their any sample similar code available for facebook,or both for facebook and twitter(combine).
Thanks in advance
Use fbgraph. see this tutorial and also use google for find facebook developer documentaion and there see about fbgraph.
I am starting out with the Facebook SDK for iOS and in my app I am trying to get the users news feed and load it into a uitableview. This is proving tricky.
I can't find any documentation on it either.
using the Facebook SDK, you can call Facebook Graph API using:
[facebook requestWithGraphPath:#"me/home" andDelegate:self];
to get the current user's newsfeed. You can then use the returned data to populate your tableview. More info about TableView can be found at http://developer.apple.com/library/ios/#documentation/userexperience/conceptual/TableView_iPhone/TableViewStyles/TableViewCharacteristics.html
This is a comment on the suggestion to use #"me/home" (I couldn't comment because i have low reputation so far)
As i understood you can't use me/home anymore for iOS or Android because Facebook won't let you use read_stream permission which is necessary for me/home. I mean you won't be able to pass a Facebook app review if you use read_stream permission
Instead you can use:
1) me/feed but it gives only user profile's posts and no newsfeed
2) or get liked pages with me/likes and get each page's feed with page-id/feed