I am including Facebook API for IOS in my app to share the link from my app in facebook. When I click "Share" from my app, It shares the link when I already logged in facebook in my device. If not it asks me to login. Once I logged in, the window closed and its not shared that link. i need to click "Share" again to share link. What should I need to share automatically after I logged in. Pls Help me.
| show 2 more comments |
|
Did you use the Facebook SDK for iOS (https://developers.facebook.com/docs/mobile/ios/build/)? I scrupulously followed those instructions and it worked well for me on the first try. The only trick for me was the much discussed solution to make sure the app didn't launch Safari for authentication when people didn't have the Facebook app by replacing:
with
in the If this doesn't answer your question, perhaps you can post some code so we can help diagnose what's going on. The question (in the absence of code) is a little ambiguous. |
|||
|
|
|
See my question if you have any doubt with facebook API integration. Facebook API dialog page showing error in second time and after that Try this code:
|
|||
|
If your app is not re-launching your app after sign-in (from browser or if the user has installed the Facebook app) then you have not added your FB App Id to your Info.plist (which is how your app gets launched) See the documentation here go to section Modify the app property list file:
Eg: URL Types.[0].URL Schemes.[0].fb1234 (where your Facebook app id is 1234) |
|||
|
|
Modify the application delegate header file: Step 2on the Facebook documentation – peterept Mar 28 '12 at 6:03