Tagged Questions
0
votes
0answers
29 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
52 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
53 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
92 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
236 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
183 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
385 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
132 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
409 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
366 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 ...