Tagged Questions
0
votes
1answer
41 views
Facebook app error with access token
I have flash game for Facebook. Yesterday It worked correct, successfully inserted data to database, but now when I try to start my app/game I got error: Fatal error: Uncaught OAuthException: An ...
0
votes
1answer
20 views
March breaking changes, getting app access_token from new endpoint
The breaking change this month is that apps will no longer be returned for /me/accounts and that we should not be using /me/applications/developer to get applications but this endpoint does not return ...
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
0answers
480 views
How to retrieve all user fields with application access token?
As per documentation of Facebook of Using App Access Token,
While an App Access Token is largely for the purposes of publishing information back to Facebook on behalf of the user, there is a limited ...
0
votes
1answer
90 views
App security breach - how to invalidate all the tokens for one app?
One of our apps got hacked and some wall posts/photos are posted on
behalf of our app. We are suspecting that a hacker has somehow retrieved access_token from our app.
What's the best way to plug ...
0
votes
0answers
54 views
How to handle expired Facebook access_token without users coming back to our app and reauthorize us?
We are the developers of a Facebook application and we have a question regarding expired access tokens. When users install our application, we ask them to provide us with offline_access permission, ...
1
vote
1answer
1k views
Facebook Application Auth Token Get Error
I am trying to request the authtoken for my app via the Facebook API Graph Exlorer following the facebooks instructions. When I do a get call with a URL with the following form:
...
0
votes
1answer
1k views
Getting an access token for my facebook app
I know that this seems like something that has been answered before but we are really stuck and confused here! (after hours of research)
We have a server that needs to get the insights information of ...
2
votes
2answers
1k views
Extending Facebook Page Access Token
i need to extend my facebook access token, I'm calling this:
https://graph.facebook.com/oauth/access_token?
client_id={MY PAGE ID}&
client_secret={THE SECRET KEY OF MY APP}&
...
1
vote
1answer
370 views
App Access Token can't retrive Test Users?
I can't get the list of my test users with my app access token. First I get the app access token with the following graph api call:
...
0
votes
1answer
257 views
App works in canvas page but not in page tab
So im working on an app which will where you will be able to send in a love poem and then get it back to your facebook wall translated.
So it should be a pretty simple task. I ask for the ...
-1
votes
1answer
85 views
Is it possible to create an app that acts like this…? [closed]
Issue: I want to create an app that can publish on a user's wall (previously allowed to) impersonating the user or on his pages's walls impersonating these pages even if the user is offline. All af ...
3
votes
3answers
12k views
The user hasn't authorized the application to perform this action
I am developing a simple java program to post automatically (articles) to my facebook fun page. I have created an app and have got an access_token using url : ...
1
vote
0answers
279 views
“Error Validating Application” on localhost
First of all what I am trying to do:
Updating the status and uploading photos to a Facebook Page as the page (not a user)
What I did:
I created an application
I granted the app permission to ...
0
votes
1answer
476 views
Facebook Graph API request returns empty / bool (false) despite permissons + accesstoken
my request seems to be empty:
$data = file_get_contents('https://graph.facebook.com/my_user_id/photos?acess_token=xxx');
echo '<pre>' , var_dump($data), '</pre>';
writes out bool ...
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=" . ...
1
vote
2answers
1k views
How to post a COMMENT with FB application profile photo?
It is possible for a 'facebook application' to post a COMMENT on a POST when there is a valid ACCESS_TOKEN. API call for the same is: /xyz_profile_id/comments/?access_token=...
ACCESS_TOKEN being ...