Please help me this question! I want to create app login facebook, if device installed Facebook app, my app will call Facebook app when user login Facebook, if Facebook app is not installed, my app will show pop up login view, without sarafi?
|
closed as not a real question by Mitch Wheat, Janak Nirmal, KatieK, Perception, Niranjan Kala Jan 10 at 6:49
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
If You use share kit then Go to facebook.m class in your SDK find this method:
Then replace your last line which is: With this line: |
|||||||
|
|
This will handle opening a facebook session.
Make sure your app delegate handles the callback url also.
|
|||||||||
|
|
If you are using the Facebook SDK you can use FBSession to open a session.
} This will open the Facebook app if it is installed in your phone and will show the pop up if you are not logged in. It will use the safari if the native app is not installed in your device. Before doing any action with Facebook always check whether the FBSession is open and active using: if (FBSession.activeSession.isOpen) |
|||
|
|
