Tagged Questions
0
votes
0answers
37 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 ...
0
votes
1answer
59 views
Facebook oAuth with Phonegap 2.3.0 not returning token as url param at success url
I am trying to integrate Facebook oAuth with my Phonegap 2.3.0 application so that I can post to the user's wall. I am able to use the library from here: Phonegap oauth with some modifications to ...
0
votes
1answer
56 views
Facebook PHP SDK - OAuthException - Active token is valid in http request but in code not
I am getting this error when i open my app canvas. I already found out in which line the error comes up.
User is logged in <-(echo by php)
Short Token is: XXXTOKENXXX <-(echo by php)
Fatal ...
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
1answer
96 views
OAuthException(#240) This user isn't allowed to upload photos to this object's wall
This is my cron.php
<?php
ob_start();
// Load the required files
require_once('fb_src/facebook.php');
require_once('includes/fb.php');
require_once('includes/db.php');
...
1
vote
0answers
63 views
Does Javascript SDK update accessToken expiry?
Sorry if this a simple uber basic question... but I am just looking for clarification.
If our pages are calling the Facebook Javascript SDK () on most pages, is the expiration of the accessToken ...
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
388 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 ...
0
votes
2answers
133 views
Accessing a common Facebook account. Facebook authentication and access tokens
I'd want to allow all users of a mobile app to post to a same Facebook account, account whose credentials I don't want them to know... I'd simply want to make it transparent to users, I mean, I'd like ...
3
votes
2answers
413 views
Handling expired access tokens in iOS app
What are the best practices when it comes to handling expired access tokens in an iOS app?
For example, the user could change their Facebook password, or they could simply remove the FB app from ...
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 ...
1
vote
2answers
367 views
Permanent read access to a user's Facebook stream since offline_access was deprecated?
I had an idea for an app that would periodically access peoples' Facebook data. However, Facebook just deprecated the offline_access permission which prevents tokens expiring in a set time period.
Is ...
4
votes
1answer
1k views
Set Javascript API accessToken
I am developing a Facebook app. I have a server side OAuth flow which allows me to authenticate a user without requiring him to click on any button. I hence retrieve his accessToken as long as other ...
0
votes
1answer
229 views
Check if Ouath token is invalid
Is there a way to send a request to Facebook and Twitter with a token to see if it has been invalidated. I know if I change my password on facebook I invalidate my tokens so if a user of my app does ...
5
votes
1answer
3k views
Oauth 2.0 cannot get an access token from the signed_request 'code' value
I'm migrating to Oauth 2.0. My current site uses JS SDK, has a fb-login button, then I'm accessing Graph to get the users details.
I'm having problems getting an access token to get this data from ...
4
votes
2answers
1k views
Access token immediately invalidated
for a few users (maybe not that few, considering the number of related mails I'm receiving) the access token associated with an OAUTH authorization seems to be immediately invalidated. The user is ...
2
votes
2answers
406 views
iframe tab facebook app displays on a new page instead of within the iframe/facebook-canvas
I am using Python and a javascript or php sdk.
To obtain the access_token - I follow the steps indicated on the docs page (https://developers.facebook.com/docs/authentication/). I pass the redirect ...
0
votes
1answer
590 views
Need to generated OAuth token to open dialog
I am really struggling with this whole OAuth thing. I have a link that I want to pop open a dialog that will post a message to the user's wall. Here's my code...
<a ...
0
votes
2answers
1k views
How To Create A Webpage With Facebook Login And Get The Access Token?
I want to build a website that enable facebook user login and then show their friends' profile pictures.
There are so many resources to look up, Javascript SDK, PHP SDK, OAuth 2.0, I'm just confused ...
1
vote
0answers
520 views
Facebook offline_access but access tokens still expire
I have written an application to manage a user's Facebook notifications. The app requests offline_access as well as manage notifications permissions. My logs have been filling up with Facebook errors. ...
0
votes
2answers
686 views
Getting and storing access tokens using base_facebook.php and facebook.php?
Using the above libraries, I can get the details of a user, his authorisation, his friends, but only once: I need to store the access_token and key in database, so the user can access his friends ...
-3
votes
1answer
61 views
Why the Authentication guide was not updated after The Access Token is Changed? [closed]
The Access Token is Changed,I can not access the facebook in my web site, Please help!!! Can you tell me access facebook step by step like this:http://developers.facebook.com/docs/authentication/.
...
0
votes
0answers
463 views
How do you generate a facebook user_token generate programmatically?
When I'm logged into facebook under my developer account, I can go to the following URL:
enter link description here
That gives me a User Token and an App Token.
Since I have to read through some ...
0
votes
2answers
2k views
Facebook Access Token Expiring with offline access
I have an application to manage a users Facebook notifications, the app requests offline_access as well as manage notifications permissions. My logs have been filling up with Facebook errors, I ...
0
votes
0answers
128 views
The AccessToken is Changed?
I call facebook api interface, after landing in obtaining accessToken, the facebook api interface returns accessToken format (format is: accessToken = XXXXXXXXXXX) and the official site description ...
1
vote
1answer
4k views
What is supposed to be the redirect_uri when getting access token in facebook app?
$token_url = "https://graph.facebook.com/oauth/access_token?client_id="
. $app_id . "&redirect_uri=" . urlencode($my_url)
. "&client_secret=" . $app_secret
. "&code=" . ...
0
votes
1answer
233 views
How to obtain an access_token (not for app)?
I am trying to query facebook reviews from the statistics software R. Could you please let me know how to obtain an access_token? I am not creating an app, and I haven't found any instruction about ...