Facebook API with iPhone SDK

Has anyone been able to implement the Facebooks API in their own iPhone app?

Documentation is pretty rare when it comes to iPhone integration, but calls to get user information look a lot easier than the previous method of using FBConnect. Therefore, I would like to use it.

I saw several messages, but no one explained to you that you would use the login button, as was the case with FBConnect earlier?

If someone has achieved this or can offer me any pointers that would be brilliant

+4
source share
3 answers

I am currently using UIWebView for authentication using the Facebook API, as described here . However, this actually does not allow you to interact with the application, for example. showing a download dialog or error message. I tried to intercept webViewDidFinishLoad whenever I get a response from Facebook and show a UIAlertView with an error message when something goes wrong. The problem is that Facebook has already changed one of its URLs, so my string comparisons didn't work anymore.

Iโ€™m not going to invest any more time at this time because the Android SDK was already announced during Google I / O (will be released soon) and it is rumored that the iPhone SDK will be released during WWDC.

0
source

Try ShareKit . Within a few hours, I implemented sharing in my application.

+1
source

I am currently using UIWebView for authentication using the Facebook API as described at http://www.mobisoftinfotech.com/blog/iphone/iphone-fbconnect-facebook-connect-tutorial/

0
source

Source: https://habr.com/ru/post/1309782/


All Articles