Tagged Questions
0
votes
2answers
19 views
OAuthException: This authorization code has been used
I have facebook application where I have used php CURL for authorization and to get access token and facebook user id.
I have following code for allowing user access:
function AlowUserAccess()
{
...
0
votes
0answers
68 views
Android Facebook SDK 3.0 refresh token issue
I have native Facebook application installed on the device, In my test 'First Android Application' sample I am verifying if my token is getting extended. On Nexus 4.2/4.2.2/LG AT&T device I notice ...
1
vote
0answers
103 views
FacebookOperationCanceledException: Invalid application
I'm using FB SDK3, my Android app need to get access token.
For that I created the following code:
private static class FacebookConnector implements Session.StatusCallback {
private static ...
2
votes
1answer
226 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
59 views
android error with facebook login on market
When i test this app on my device with eclipse is all ok;but when i publish this app on google play store the facebook login failed!!
why?
help me please!!
it is a simply app ("coffee break" on ...
0
votes
0answers
93 views
Facebook php sdk very slow + gives wrong access token
I am trying to get an user access token with the following code:
$facebookID = Yii::app()->facebook->getUser();
$accessToken = Yii::app()->facebook->getAccessToken();
echo $facebookID;
...
0
votes
1answer
239 views
Error 100 This authorization code has been used
I have a simple sign-in button that directs the user to:
...
1
vote
0answers
98 views
Facebook Authentication Workflow - Which one do i choose?
Our company plans an app for Android and iOS with a server backend. Besides our own registration and login mechanism we want to implement the Facebook login to simplify the registration process. Our ...
0
votes
0answers
259 views
Generate long lived “User” access token from access token generated from Graph API Explorer. Not the app access token
My objective is to fetch public data from user timeline like statuses, feeds, username, hometown etc. I am using desktop application in Java which sends HTTP request with access token to get the ...
0
votes
1answer
135 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 ...
0
votes
1answer
528 views
Facebook Graph API Error (access token)
I'm getting the following error when I try to access the Graph API with my access token:
{
"error": {
"message": "Expected 1 '.' in the input between the postcard and the payload",
...
0
votes
1answer
381 views
FB Authentication Server Side
I am asking user to login from FB JS SDK. I get accessToken and userID and I save it in a database. And then internally every few minutes I call a php function at the server to check if there is an ...
3
votes
1answer
532 views
Facebook App Type: Which one to pick for mobile AND web?
In the Facebook App Settings ☞ Advanced ☞ Authentication I can pick "Web" or "Native/Desktop" as App Type. The info bubble says:
Only select Native/Desktop if you are a Native iOS or Android app,
...
0
votes
0answers
69 views
Token to post to a Facebook page as an app
This is what I do to get the token:
Use the app-id to build this link to authorize the managing of pages
...
1
vote
1answer
399 views
Facebook Oauth access_token andpoint does not return “expires” value
I have a strange problem with Facebook Oauth access_token endpoint:
https://graph.facebook.com/oauth/access_token?
client_id=APP_ID&
client_secret=APP_SECRET&
...
0
votes
1answer
445 views
How can I request a new access token automatically to get feed of an open Group?
I have an open group on Facebook and I would like to display the feed from that group on my web site. I can do it just fine, the PHP code I created gets the feed and it is formatted just like I want ...
0
votes
1answer
159 views
FacebookOAthClient is not exist in facebook c# SDK v6.0.20
I have facebook c# sdk v 6.0.20 installed.
`Facebook.FacebookOAthClient cc = new Facebook.FacebookOAthClient();`
But when i try to create an object of type FacebookOAthClient it shows an error
...
2
votes
1answer
1k views
Malformed access token
In my application I am using facebook accesstoken to post a message to users fan page wall. Now while posting am getting an error like
Malformed access token
I am able to read the posts from fan ...
1
vote
1answer
186 views
Access tokens?
I am developing an app in PHP hosted on Heroku, and my biggest problem is not getting access tokens for a user to get my app to fully work. The app works perfectly for me (as I am an admin), but other ...
0
votes
1answer
399 views
Facebook API access token - when I know uid and password
I have simple situation: I know both (user) UID and password and I want to create API requests, such as https://graph.facebook.com/220439?access_token=....
What I don't want is to redirect user to ...
0
votes
1answer
503 views
Alternate to Facebook login authentication iFrame
I am new to Facebook app development. I need to integrate Facebook with my website. On investigation ( http://developers.facebook.com/docs/guides/web/#login ), I found that to access Facebook user ...
0
votes
1answer
78 views
Does changing the app's “Display name” invalidate access tokens?
If I change my app's "Display name", will users have to grant permissions again, or will it continue working for current users as is?
I did try this with a dummy app with just one user - no ...
0
votes
1answer
182 views
using facebook client flow to authnticate and login on app/site
Other then the fact that when using facebook's client-flow you get an access token right away, and when using the server-flow you first get an authorization code that you have to exchange for an ...