Now i am working with android Facebook integration.But logout is not working on this.without logout from my browser in phone i can't logout from my application.why this happening?.How can we avoid this
|
|
|
There are two independent things going on here: Authentication is required the first time your user uses your app and lasts until the user explicitly de-authenticates (e.g. through the Facebook web Account Settings -> Apps -> App Settings). Log in may be required each time your user starts your app. But if you use the default SDK authorize(), that tries to do a Single Sign On (SSO), where if the Facebook app is logged in, your app is automatically logged in and uses the existing access token. If you are using SSO, when you do a logout, that has no effect, as a real logout would have to log out the Facebook app - which the user might not like! You can get around this behavior by doing an authorize of the form
which avoids SSO and forces a dialog login. Of course, that then forces your user to login each time you start your app - unless you save the login details / access token under the covers (which is what the SDK does - check the source). EDITED:
|
|||||||||||
|