Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to ask how to implement text view in Facebook API. I want to post message on friends wall and also how to get friends list and personal details from Facebook.

share|improve this question
1  
you should change your question to "Facebook API Post Message On Friends Wall" or something similar – MCKapur Apr 18 '12 at 12:20

2 Answers

You have to use the IOS Facebook API. They created a quite detailed Introduction page.

Have a look here: https://developers.facebook.com/docs/mobile/ios/build/

This image shows the whole process from authorization till publishing something on the news feed. (Also copied from the Facebook Developer tutorial) https://developers.facebook.com/attachment/ios-app-flow.png

Describing the process to get the friend list: Facebook Api to check in users in an iOS app

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.