Importing Facebook Posts to an iPhone App - iphone

I'm new to Xcode and wondering if one can help me in how to import a facebook fan page posts to an iphone app? When importing the posts, the app's users should be able like/comment on any post.
Thanks in advance

In the first place, you should look at the Facebook's provided iOS SDK which works seamlessly.
Facebook iOS SDK
And you'll find what you want here through a graph api request.
Facebook iOS SDK Request
If you need it, I can provide you more guidance than that, but that shouldn't be necessary ;-)

Related

share on facebook photo api new IOS

http://www.raywenderlich.com/77/how-to-post-on-facebook-with-your-iphone-app
I found this tutorial to share photos on the facebook wall is perfect however if I change the ID of the facebook api, putting my ID instead of using the MyGrades it does not work, because the Facebook SDK has been updated and is no longer compatible.
I get the following message: "Sorry, the application you are using is Facebook integration is misconfigured ......"
've researched about the solution would be to update the facebook api.
anyone have a suggestion that works exactly like this example but with the current api?
http://www.crocko.com/D880103DB52C4426B1D7331A69CADDE4/FacebookPostTutorial.zip
With ios6, apple as introduced a number of their own sharing tools in the Social framework. I'd suggest that you look into SLComposeViewController. There is a good explanation of it in this question

Post picture to Facebook from iPhone/iPad app

I have developed an app for the iPad and iPhone that uses the camera to take a picture
Can someone tell me the easiest way to publish that to a users Facebook page?
Do I need to use the Facebook api's? I am not writing a Facebook app, just want to post the picture on the users wall.
Thanks
Would not make sense not to use FB API. There might be some other API that uses FB API itself but not sure about that..
I found a similar question:
question
Hope that helps!

FBConnect API is not showing Share page recently in iOS

i have made use of "FBConnect API" in my app for fb sharing..
Before two-three weeks ago it was working fine. but now it does not display share page at all.
Does any one know what is the issue with it?
OR
Any one know how to resolve this issue?
i have tried other sample apps for FBConnect api but i saw same problem in other app also.
You may get this issues of using old API's. But Below links may help you.
This is a link for new facebook ios sdk
https://github.com/facebook/facebook-ios-sdk
Tutorial is here to integrate your facebook
http://developers.facebook.com/docs/mobile/ios/build/
I have written a code to work for facebook integration with dialog page. You can use my code from below link. but dont forget to include your app id in .plist file and also inside the code.
https://stackoverflow.com/a/9954128/1083859

iPhone app facebook post to wall uses random "Share" app

I'm doing a standard post to wall using iphone facebook sdk. The problem is that when I do the post, the wall post links to a generic app called "Share" instead of my app.
This is the app it is linking to
https://www.facebook.com/apps/application.php?id=206749070441
I'm providing my app key/secret to the SDK so I don't see why it is doing this. Thanks for your help!
That is most likely what you provided for your app's name when you created your key/secret.
To edit it, after you have logged in to Facebook goto: https://developers.facebook.com/apps
You should see a list of your apps, and can edit them there...

iphone integrate facebook

i want to post any photo on to the facebook wall .so through iphone i want to develop such application please help me
you can use graph API for post image on facebook.
see this link:
http://developers.facebook.com/docs/reference/api/
Grab the latest Facebook iOS SDK, there you should find all of the posting examples to get you started. You will need to register an app on Facebook and get an Application Secret code to include in your app to test properly.