0
votes
1answer
70 views

How should a client pass a facebook access token to the server?

On every call to my REST API, I require clients to pass user's facebook access token, which authenticates the user. What's best practice for passing this token? maybe as a parameter behind the HTTP ...
0
votes
1answer
44 views

Is it possible to get any information out of a Facebook Token without hitting the server?

With the old Facebook access tokens (Oauth1) it was possible to get a user's Facebook ID and the token's expiration without passing anything to the server. Is this possible with the new Oauth2 ...
0
votes
1answer
126 views

When Facebook removes an App, it puts the site's domain on a blacklist?

I got my app removed by Facebook last week. Now I'm trying to build a new one correcting the problems, but I always get an error authenticating the user. SECURITY WARNING: Sharing the above URL ...
0
votes
1answer
295 views

Error 100 This authorization code has been used

I have a simple sign-in button that directs the user to: ...
0
votes
1answer
139 views

Different types of facebook access token

I a bit confused. I'll be glad if someone could clarify it to me - What are the differences between the the token that I get in the following ways: Getting a token in this way: ...
0
votes
1answer
530 views

How can I get a user access token for a specific facebook test user?

According to Facebook Devlopers: Test Users, I can list the test users of my facebook app by making a request to https://graph.facebook.com/APP_ID/accounts/test-users?access_token=APP_ACCESS_TOKEN. ...
3
votes
1answer
510 views

How to get a Facebook access token that has enough rights to get the posts in which you're tagged in?

The Facebook posts in which you're tagged in - using @Name - appear in your wall feed. A friend of mine posted a link and tagged me in it: On the Graph API documentation, when I click on my ...
1
vote
3answers
857 views

Sharing Access Tokens Across Apps

I want to provide a service using the facebook api to third parties. Is it possible for us to share access tokens? If the third party gives my service a user's access token, can I access that users ...
3
votes
1answer
1k views

how to get oauth access token for facebook using ruby

Am trying to get oauth access token for facebook programmatically in ruby. My code is as follows: client = OAuth2::Client.new( APP_ID, SECRET_ID, :authorize_url => "/dialog/oauth", ...
1
vote
1answer
625 views

can't get access token with code

I'm using javascript sdk for user login FB.init({appId: applicationId, status: true, cookie: true, xfbml: true, oauth: true}); FB.login(callbackFunction, {scope:permissions}); i get valid access ...
1
vote
4answers
2k views

Whats the expiry time of Facebook access token fetched for the first time

Few days back I was trying to refresh access token and observed for "Web" type of app the initial access token expiry time is around 2 hrs and for "native/desktop" type app its 25 hrs. But since today ...