Is it possible to decrypt Facebook's new OAuth 2.0 access_token ?
I need to somehow get user_id and app_id from the access_token.
PS:
I need to get the user_id and app_id ONLY from the access_token as Facebook Linter used to do.
|
feedback
|
|
As others have already pointed out, the However, let's assume you stored your token(s) in a database and lost the associated To retrieve the
To retrieve the
In both cases, the associated id's will be part of the JSON response, regardless of the Let's illustrate this with an example. Let's assume Mark Zuckerberg uses the Graph API Explorer to generate an
and calling the
The ids you were looking for are part of the response. Please note that this does not work with the | |||||||||||
feedback
|
|
If the access token is in the encrypted format, there's no programmatic way to determine the User ID and App ID. I struggle to think of a legitimate way you could have come across an access token without already having those two pieces of information since presumably you know your own App ID and the User ID you stored the access token against. Nevertheless, assuming there's a legitimate use-case for this:
a call to | |||||
feedback
|
|
Generally you use the access_token to access other data from your application. So for example, your application would authenticate the user then use the access token to access other functions in FB's API, such as the graph:
| |||||
feedback
|
|
There is no public way of decrypting an access token to get the user id and app id. This is also very likely a massive breach of Facebook policy. To get an access token in the first place you have to have access to the user and the app id anyway so you shouldn't need to do this. If you don't actually have access to the user or the app id then my guess would be you probably shouldn't even have their access token and have probably obtained it 'illegally'... | |||
|
feedback
|
|
This is actually a very simple task, if you look closely at the access token itself. It consists of 3 segments, separated by a pipe character,
I'm not sure what Unless you've obtained the acces_token in question by fowl means, I don't see a problem with being able to access the APP_ID and USER_ID from them (and neither does Facebook, apparently). So all I'll say on that is be responsible :) The other thing to keep in mind is that this isn't a standard or anything, and is subject to change. So, watch out for that, too. | |||||||||||
feedback
|
|
you don't have to decrypt accesstoken As far as AppID is concerned,you should get it from facebook whn you make an app there,its your id to connect to facebook. facebook sends the userId along with accesstoken.. just check your cookies in browser or in oauth case check entire string returned when request for acess token. | |||
|
feedback
|
|
Are you sure you're talking about the Access Token here and not the signed request? When you're Facebook Application is loaded you have a signed request object, which has the information I believe you are looking for (however if the user has not authorized your application their user ID will not be in the signed request, Facebook security) | |||
|
feedback
|
|
The only way currently available is to use to Facebook Access Token Lint Tool. You can consider to automate the process. | |||
|
feedback
|
app_idto get anaccess_token, and you can getuser_idfrom theaccess_tokenby accessing the Graph API URL/me/. Any reason you don't have / can't get the data you want without trying to decrypt theaccess_token? – chesles Sep 5 '11 at 15:26user_idandapp_idare prerequisites for theaccess_tokenso it is nonsensical to reverse this. As other have outlined, you can always make a simple API call to/me/to retrieve the associateduser_idas long as the token is valid. If the token is not valid anymore, you're out of luck. – kongo09 Sep 7 '11 at 7:40