The OAuth access token specific to the Facebook API.

learn more… | top users | synonyms

0
votes
0answers
125 views

Losing access token

Sometimes my Facebook object goes from something like this: [fb] => Facebook Object ( [appId:protected] => 350348105029704 [appSecret:protected] => ...
1
vote
1answer
279 views

How to get Graph API access token server side to post to my own page?

I have my a job running server side and posting to my own facebook page but the token I get manually through the API graph explorer expires and my app fails. All I need is a access token so I can ...
2
votes
1answer
184 views

Automated Comment Cron Job No Longer Working: Fatal error: Uncaught OAuthException: Bad signature

A few months ago, I wrote a small app that would parse a string from my client's blog page and post it as a comment to their Facebook wall, which I have the credentials to manage. The client only had ...
0
votes
1answer
553 views

PHP fb api get secret group information without user login

I am a member of a secret group and want to access and use the groups information within an php-website. Is it possible to access secret groups without an enduser-login? Is there a way to add the app ...
1
vote
1answer
134 views

Retrieving scores with Application Token

So I have an app set up, and I'm trying to send scores via a server rather than from the application. This allows me to keep scores longer term, whilst also having the social advantages of Facebook. ...
0
votes
1answer
697 views

Facebook: App Access token, Posting to a User

I went through this wonderfull tutorial on Using App Access token. According to this post it says that: If the user has not provided the appropriate permissions to publish on the user’s behalf, ...
-1
votes
2answers
154 views

Regenerate new access_token on Facebook graph API

While doing an integration Facebook feeds using API Graph, using PHP language, to get the latest post from the wall of Facebook account (like latest Tweets on Twitter), an application should be ...
2
votes
1answer
358 views

Dynamically fetch user Access token of Facebook Application

I have written an article Upload photos to Facebook Fan Page using PHP. The code works fine but has only one problem. The user access token of the Facebook application is hard coded. See following ...
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", ...
11
votes
1answer
2k views

Long-lasting FB access-token for server to pull FB page info

I'm aware that there are many questions about Facebook access-tokens and the grief they cause, but despite much experimentation and reading many frustratingly vague blog articles (FB and otherwise), ...
1
vote
2answers
666 views

Facebook session expiration error when try to post actions to open graph using 'App access token'

I am facing this error with some of my users, the case is as following: I use facebook "App access token" to post actions to facebook Open Graph instead of the user access token because app access ...
1
vote
1answer
99 views

How to build a Facebook app with PHP that shows albums?

I want to build a Facebook web application that uses the graph API to show only the albums of a specific user. That user is always the same, and I know his credentials. My code so far: ...
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 ...
2
votes
2answers
1k views

C# Facebook SDK extend an accesstoken to 60 days

The main question: How am I supposed to extend the 2 hour access token for the 60 day access token via the C# SDK? Can you provide a sample of just that section where the code has already been traded ...
-1
votes
1answer
374 views

get facebook access token is invalid

i can get access token from this link with some click :) http://developers.facebook.com/tools/explorer i retrived access token is long and it work for ...
0
votes
1answer
549 views

Long Lived Page Access token expired after a couple of hours using PHP SDK 3.2.0

Remove offline_access permission is enabled in my app advanced settings; I first call the following function: public function app_login( $url_redirect=null ) { $facebook = new ...
7
votes
3answers
392 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
1answer
123 views

Unable to get access token from Facebook with Server-Side Authentication

I try to get an access_token like this documentation : https://developers.facebook.com/docs/authentication/server-side/ but it does not work ! I have this error : { "error": { "type": ...
2
votes
1answer
388 views

facebook user access token across different platforms

I was wondering if user access tokens that are recieved through one platform can be used to access and make facebook calls through another. For example: I have a mobile app and a web server that ...
0
votes
1answer
56 views

Get Auth Token to see public posts

I'm building an application that is like an RSS reader for public pages feeds. My problem is I don't want the user to have to login (since I have no care who they are), yet to access public feeds ...
0
votes
2answers
199 views

Get Access Code without an App ID

I need to post to my client's facebook wall from their C# application, they do not have a facebook application. To do this I need to get an Access Token, and to do that I need an App ID. How can I ...
0
votes
1answer
180 views

VARCHAR not accepting strings with non-numerical characters

I am trying to store a Facebook access token in my MySQL database. I have set the field to take a VARCHAR of length 255 and it can accept strings of numerical characters, but if the string includes ...
1
vote
1answer
801 views

Posting scores with app access token

I'm trying to post a score from my server. I have my app set up as a game. I've got my app access token. I'm POSTing to https://graph.facebook.com/USER_ID/scores I have authorized and given ...
0
votes
1answer
43 views

How to authenticate the user and restrict a Facebook app for just posting from server side?

I'm creating a game for iOS (and maybe Android) in Flash (with Adobe AIR) and I'm trying to integrate Facebook. I've read lots of similar questions but I still can't get a clear answer. With my app: ...
0
votes
1answer
1k views

Where to request extended access token in Facebook App using PHP SDK

I need to get access to my user's information when they are offline and I understand that I need to use an extended access token which lasts 60 days. I have been looking at this SO post How to extend ...
0
votes
1answer
241 views

How to make API calls with App Access Token for retrieving relationship_status

I am working on a application development which is getting real updates from facebook, and I need to make API calls after getting a change notification. I am able to make API Calls using User Access ...
0
votes
1answer
56 views

Why can I not obtain a page `access_token` for my OpenGraph object?

I have a very simple page which includes the necessary OpenGraph tags to create an OpenGraph object when liked, and I would like to be able to post as that page. From what I understand, I require an ...
0
votes
0answers
52 views

How to post to an OpenGraph object via fb:admins

I asked a similar question regarding "How to post to a news feed if a user has liked a page?". From previously, I know that, so long as the OpenGraph tags are set up correctly, and the page has been ...
0
votes
0answers
561 views

post on facebook page using page access token and user access token

that code to send status to page as page not user it depends on page access token but it doesn't depend on offline access token of user can it be modified to enable user offline access token ? ...
0
votes
0answers
183 views

Facebook iOS SDK extending the token upon every app launch

I followed Facebook tutorial about how to use the extendAccessTokenIfNeeded - - (void)applicationDidBecomeActive:(UIApplication *)application { [facebook extendAccessTokenIfNeeded]; } This ...
0
votes
2answers
501 views

Client Side Authentication against Facebook

We have a spring web app with spring mvc controllers. It's supposed to connect to our facebook app to get an authentication token to be used for further access. The communication with our App seems to ...
0
votes
1answer
559 views

Facebook Store Access Token to Post to Wall Later

With offline_access being deprecated is it possible to store a user's access_token and post to that user's wall sometime in the future?
0
votes
2answers
101 views

Can't get long lived tokens working properly

I removed the offline_access permissions, revoked the offline_access permissions, and set my app as native. Now instead of getting the 2 hs token, I get a 24 hs token, but is supposed to give a 60 day ...
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 ...
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, ...
6
votes
3answers
358 views

Sensible solutions to the removal of the offline_access permission

Am coming back to building a FB app after some time away from the FB Platform and I see that the old offline_access permission has been removed and replaced with long(ish)-expiry tokens[1]. So, it ...
0
votes
0answers
798 views

Facebook deprecated offline access - get long lived access token

I'm running a website that contains some events. When an event is added to the website, the event should be posted to facebook. This works perfectly, but I'm trying to update it because of the ...
0
votes
2answers
846 views

set user (access token) within FB.init

i want to publish story to user timeline even when they were not login with facebook. Actually I stored user access token in the database, if the user login in with email, i'll retrieve the access ...
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 ...
0
votes
1answer
294 views

Why pass an existing access token to Facebook.init()?

According to its API documentation, the Facebook.init() method allows you to pass an existing access token. This would be very useful to my project, so I created a test app on Facebook and followed ...
1
vote
1answer
399 views

Passively get new access token after access token expires

I am working on a simple Facebook App that will allow me to post from my client's website to my client's Facebook Fan Page. Right now I set the access token with $facebook->setAccessToken( ...
0
votes
3answers
832 views

Use facebook's php SDK to retrieve email

So far i have it set up to retrieve basic user info, nothing extended. Im trying to get the user email as well, with no success. Here's what i got: $facebook = new Facebook(array( ...
0
votes
1answer
369 views

No active access token with ajax based app

I am developing an app with 2 files: index.php (application container) process.php (called in ajax) index.php <?php include 'config.php'; include 'lib/functions.php'; require_once ...
0
votes
2answers
125 views

How to get duration of an access token?

I think I have gotten a long duration page access token. When I got the long token for my user, ( https://developers.facebook.com/roadmap/offline-access-removal/#extend_token ) it returns the token ...
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& ...
1
vote
0answers
74 views

FB duplicate App ID

I registered an app with FB and was using the APP ID (API key) to let users log in using FB from both web and a mobile app and everything was working fine. Till we started seeing some intermittent ...
0
votes
1answer
270 views

Unable to get a long-lived Facebook Access Token with Server Side OAuth Fow

I am trying to get a long-lived Facebook Access Token so my java servlet app can monitor and retrieve messages and such for my users without reauthorizing every hour or two. I am using the server ...
0
votes
1answer
488 views

How can I get a user access token for a specific facebook test user?

According to Facebook Devlopers: Test Users, I can list the test users of my facebook app by making a request to https://graph.facebook.com/APP_ID/accounts/test-users?access_token=APP_ACCESS_TOKEN. ...
1
vote
2answers
239 views

Can i load the private photos with my webapp from facebook users?

I have a website and use the login using facebook. I want to do the following: User comes to my web site - login with facebook - I read his facebook data and photography permits For example: { ...
1
vote
0answers
509 views

How to receive return extend access token by javascript

After extend, I can: See extend access token on browser: access_token=TOKEN&expires=EXPIRES Error message "invalid assignment left-hand side" How can I get token from response. My Code: ...

1 4 5 6 7 8