0
votes
0answers
35 views

Valid access token not work in Graph API Explorer

The Facebook Access Token debugger say that my access token is valid: Issued 1368430222 (24 minutes ago) Expires 1373614222 (in about 2 months) Valid True But when I test it in the Graph API ...
1
vote
0answers
34 views

Getting Generic Access Token, Invalid callback

I am trying to get a generic facebook access token. All the tutorials I read recommend using the call below. https://graph.facebook.com/oauth/access_token? client_id=YOUR_APP_ID& ...
0
votes
1answer
30 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 ...
2
votes
1answer
207 views

“The request is invalid because the app secret is the same as the client token” error when trying to get an access token

I was using facebook php sdk without any problem to provide facebook login on my website. Since a few days, I'm unable to log in anymore. I follow the steps described on ...
0
votes
1answer
98 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
0answers
13 views

User access tokens are working with different application tokens

I have encountered a pretty weird issue that could lead to potential security concerns: I've declared one application per environment (development, test, production…), however user tokens work ...
0
votes
3answers
102 views

Is it possible to send a request to the Facebook Graph API from client side without exposing our access token to the public?

My question is related to, but not exactly, this question. I am currently working on a business directory Web site (similar to Yelp), in which businesses have their own pages. Let's call this app ...
0
votes
1answer
116 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
0answers
332 views

C# OAuthWebSecurity Facebook AccessToken to retrieve email address

I'm using C# OAuthWebSecurity for authenticating against Facebook and other 3rd party OAuth providers. I'm successfully authenticating with Facebook and am getting an AccessToken for my app returned ...
0
votes
1answer
677 views

How to handle expired Facebook access tokens with SLRequest

I've integrated the SLRequest class with my app and can successfully update user timelines etc. So far so good. However, I'm stuck with how to handle the scenario when Facebook invalidates the user's ...
0
votes
1answer
131 views

Authenticate user from mobile app

I have mobile online game and my server need user_id for the player. But facebook only gives me access_token to request data from user account and doesn't provide signed user_id. It's important to ...
2
votes
1answer
237 views

Sharing Facebook access token between iOS and website

I have developed a PHP website where users authenticate via Facebook and I get and store their auth_token. On the other side, I have started developing an iOS app where users will be able to ...
2
votes
2answers
184 views

Refreshing an expired access token for specific user

The application which I am building maps a user_id to multiple facebook accounts. I have access tokens for each of these mapped accounts and everything works nicely. There is a problem, though, when ...
7
votes
3answers
387 views

Cannot access application using the specified access_token

I am using Facebook long time tokens(2 months), but FB starts to be nondeterminic and gives me sometimes this return { "error": { "message": "Cannot access application using the specified ...
1
vote
0answers
145 views

Omniauth-facebook Override oauth_token

I'm building a Rails 3 app which will exclusively use Facebook for authentication (via omniauth-facebook & koala for performing graph stuff). I want to be able to allow an iOS app to authenticate ...
-1
votes
1answer
37 views

After getting a new long lived access_token, would the old long lived access_token work?

Lets say I have an existing long lived access_token (say T1). Now, for the same user I generate a short lived access_token. With the help the short lived token I fetch the new long lived access_token ...
0
votes
0answers
67 views

Do I need a separate Facebook App for each page on my site?

I am very new to this, my first app, learning as I go, and a little confused. I've searched google and learned what I have from the facebook developer docs, info here on stackoverflow, and a couple ...
1
vote
1answer
198 views

Deprecation of Facebook offline_access, how to handle on Windows Phone?

I am working on a Windows Phone app that utilizes the Facebook API. To do that I need the user to login and authorize my app, so that I can get an access_token. I've already done that, it works fine. ...
0
votes
1answer
124 views

Re-authenticating users after access_token expires

I need to migrate my FB app away from using the offline_access permission. As I understand it, server-side OAuth should return a long-lived (60 days) access_token once the user has authenticated. ...
1
vote
1answer
223 views

New offline_access token implementation Facebook App with javascript

I have been working with Facebook OAuth 2.0 using JavaScript SDK. I saw that Facebook has recently changed the "infinite" expiration time access token feature and now one has gets an Access token for ...
1
vote
3answers
796 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 ...
0
votes
2answers
2k views

C#: Get a user access token

I'm developing a desktop application in C#. After visiting https://www.facebook.com/dialog/oauth?client_id=123 the user logs in and the user access token is attached to the redirect uri. Its no ...
0
votes
1answer
394 views

How to generate acces token on facebook through iphone app

I need to generate access token for particular facebook account through app on iphone. Please give some guidelines to start this work.
0
votes
1answer
76 views

Issue when trying to retrieve the access_token from Facebook

I have created a new application and am having an issue when trying to retrieve the access_token from facebook. I am able to retrieve an auth code and generate the following request for the ...