Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Facebook docs:

Facebook Platform supports two different OAuth 2.0 flows for user login: server-side (known as the authentication code flow in the specification) and client-side (known as the implicit flow). The server-side flow is used whenever you need to call the Graph API from your web server. The client-side flow is used when you need to make calls to the Graph API from a client, such as JavaScript running in a Web browser or from a native mobile or desktop app.

What is the difference between access tokens taken by these flows? It seems like they length differ.

Can we use server-side flow token on a client? And otherwise, can we use client-side flow token on a server?

share|improve this question

2 Answers

up vote -2 down vote accepted

A user access token (and page access token) will be the same in either server-side or client-side environment (other than maybe for the time stamp expiration).

An app access token will be exactly the same either server-side or client-side.

share|improve this answer
Thanks for your answer. Found more info here: developers.facebook.com/docs/reference/api/permissions – alexey Jan 31 '12 at 7:53
Glad to help. :) – DMCS Jan 31 '12 at 14:54
please do not down-vote this answer. it was correct then i guess. – naveen Jul 23 '12 at 13:41
Not necessarily the same --that's a big generalization. Server side tokens are longer lived that client side ones. – drogon Feb 6 at 21:21

As of now the accepted answer is wrong. I don't know whether it was right at the time of answering this. Many things have been changed in the API since.


Currently, Facebook says this about access_tokens. On Server-side OAuth

if the access_token is generated from a server-side OAuth call, the resulting access_token will have the longer expiration time by default. If the call is made while there is still a valid long-lived user access_token for that user, the returned user access_token from this second call may be the same or may have changed, but in either case the expiration time will be set to a long expiration time.

Where as client-side OAuth flow will give you a existing, non-expired, short-lived user access_token. To make this access_token long lived, facebook is providing a new endpoint that exchanges the short lived access_token with an access_token with longer life. The endpoint is

https://graph.facebook.com/oauth/access_token?             
    client_id=APP_ID&
    client_secret=APP_SECRET&
    grant_type=fb_exchange_token&
    fb_exchange_token=EXISTING_ACCESS_TOKEN 

Also please note that

Currently the long-lived user access_token will be valid for 60 days while the short-lived user access_tokens are currently valid from 1 to 2 hours.

Excerpt from http://developers.facebook.com/roadmap/offline-access-removal/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.