views:

30

answers:

1

I am using the following android fb connect library.

http://github.com/facebook/facebook-android-sdk/

problem is after successful login, if you logout and then click again on login button it open window asking for username and password but it already displays login and password of previous user. i think it is store login and password in the cookie how can i enforce to do not remember the login and password after logout ?

A: 

If it automatically fills in the text boxes, that means you told your browser to remember the credentials. Remember, fbconnect uses a WebView to let you login.

In other words, I don't think you can enforce the browser not to remember the credentials programmatically. It's up to the user to do this.

benvd