I'm using Facebook access token to get user info for our mobile game. The Android app gets the token from Facebook, the respective Facebook app is installed on user's Facebook account. My problem is that the Facebook access token is changed every single time when i uninstall/reinstall the Android app. How to get a consistent access token? Thanks in advance.
Related
I am trying to access Picasa Albums using PicasawebService. This service requires authentication. How do I do this from an Android device, similar to what I have to do with Facebook Authentication?
What I mean is that Facebook SDK 4.x has a LoginManager, where I specify that I want to Login to my Facebook account with certain access privileges. If I am not currently logged in into my FB account, then FB login will show up, then it will ask me if I want to allow the user to access that was requested by the LoginManager.
On an Android device, I am already logged in, since I have to have a google account to have an Android device. Can someone point me to some sample code that will accomplish the above.
Thank You,
I am using Facebook SDK 3.0 for authentication. It works fine when facebook app is not installed on the device. If the facebook app is already installed on the device, I am unable to fetch the Access token value.
I am using the same code given in helloFacebookSampleActivity.java in the tutorial.
This is due to the Single Sign-On feature provided by facebook. It allows user to sign in to your app if he/she is already logged-in, in the native facebook app, without having to re-enter the username and password.
To get this working you have to submit your Android key hash to your facebook profile. For more information on this please read the Step 4 given here.
Is there anyway to access the native Facebook application (on iOS or Android) to retrieve login authentication on a mobile website that has permissions already?
The cache and data of browser has been emptied.
User hits http://example.com/
example.com checks to see if there is a token in browser to identify the user and see if user is logged into Facebook. this fails
example.com accesses the Facebook app and gets user token?
User is logged onto the site automatically.
I know this is more then likely impossible however I thought I would check with the experts.
Note that this is for Android...
You can use the Facebook SDK to do single sign on (SSO) - and in fact this is the default for authorize().
If you call authorize() with SSO / default, the Facebook SDK will detect whether the Facebook App is installed, and attempt to login via the Faceook App. If the Facebook App is present and logged in, then the SDK will retrieve the access token from the Facebook App, will not do a separate browser login, and will use the access token on subsequent Facebook requests.
Does that do what you need?
I want to use the facebook sdk and be able to automatically login after the app has already logged in once.
Currently from what I can gather if you use the facebook api and you have the facebook app installed and you have signed in with the facebook app then you don't have to login and you will be automatically logged in.
But if you don't have the facebook app then this automatic login will not happen. -----------I want to handle this case and be still able to automatically log in after the user has logged in with my app once.-------------. From my understanding the facebook sdk requires you to login if the facebook app is not there.
Also if the user has logged in once with my app, I will have the access token then as long as the access token has not expired then you don't need to log in again. But if the access token expires then you have to log in again.
Any help will be appreciated. Thanks.
The functionality you're describing is called single sign on. Facebook has an entire article dedicated to describing how it works and how to implement it. Enjoy:
http://developers.facebook.com/docs/guides/mobile/android_sso/
Hello I am using the facebook sdk for android on my android phone and using single sign on. It works fine when I logged into the facebook application, my application also signed in.
For logout I encountered a confusion.
The way I implemented was restore the access token and expired date from the user preferences of the application and check the validity of the session. If expired the application calls the facebook.authorized function and once authorized the access token and expired date will update again.
There are few things I find a bit confusion when dealing with the logout.
1) When I logged out from facebook application, my application still can get through and request the user details. Although, my saved access token on my application has no relationship with the facebook application, I thought it will at least giving me an error when requesting the data. But it hasn't given me the error.
Does it suppose to be actting like that. Signing out from facebook apps will not affect the access token I have stored on my application.
2) When I logged out from my application and not the facebook application, the facebook application won't automatically logout.
The Facebook access token and your app access token are separate and distinct, so it is entirely possible that one can be valid and allow access while the other is not valid and will require re-authorisation.
If the Facebook app is logged in but your app is not, then the Facebook SDK will use the existing Facebook app login to obtain a new access token for your app without authenticating, but this is still not linked to the Facebook app login token in any way.
If the Facebook app is not installed, or not logged in, then the Facebook SDK will take you to the Facebook website to do the initial authentication, but this does not log the Facebook app in because there is no connection between your access token and the Facebook access token.
So, in summary - your understanding is correct. There's no interaction between the two apps except for when your app tries to authenticate a user, then the Facebook app will act as a proxy, allowing you to gain access without authenticating so long as Facebook is logged in. After that, there is no further interaction and what you've observed is expected and intended behaviour.
I have the same problem. I'm thinking about creating a "isLogged" var and store it so that when someone logout and restart the app it will not even verify if the user is logged bypassing facebook's session verify.