Tagged Questions
0
votes
1answer
22 views
Do facebook app tokens expire?
I'm reading up on Facebook Access Tokens. I need to generate an app token to inspect an access token I got from a user. This is described here, but isn't that relevant now.
I can write software which ...
0
votes
0answers
225 views
Web API Authentication using facebook access token
The idea
I'm working on an ASP.NET MVC 2 project, building a REST web API. It will be used as the backend of a mobile app (iOS and Android) and possibly in the future, of a facebook app and a ...
1
vote
0answers
78 views
Facebook api authorization in IE [duplicate]
I have a problem with facebook authorization in Internet Explorer.
This code works in Firefox, chrome and safari, but not in IE.
After clicking on href with loginUrl this message appears (only in IE ...
0
votes
1answer
559 views
Get Facebook user access_token for FQL/Graph API
I am currently trying to get a user access_token to submit an FQL query to the Facebook Graph API. The goal is ultimately to fetch the most recent statuses from a FB Page.
I have the app access_token ...
0
votes
0answers
167 views
Facebook Insights API: sorry, something went wrong (same code - different servers)
I have two copies of my project, on two different servers, one is working completely, the other one is failing half-way.
In short: One script fetches the users access_tokens for their pages and ...
1
vote
0answers
146 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 ...
1
vote
1answer
131 views
Scheduled Facebook posts using JS API
I'm trying to write a client-side JS function to send a post to a Facebook Fanpage at a specific time using FB.ui. It used to be possible with the old JS SDK. Was that changed?
Would appreciate any ...
0
votes
1answer
305 views
Faceook PHP API extend access token
I'm using the FB PHP API some time ago. Now, when facebook deprecated the offline_access, some things change. Well, i'm disable in my app config the offline_access yet.
I make the login, user ...
0
votes
0answers
781 views
Post on wall fan page to a fan page that likes
I'm trying to post from fanpage1 (where I am admin) to fanpage2 ( it's liked from fanpage1).
I'm trying this code:
FB.api('/' + from.id, {fields: 'access_token'}, function(resp) {
// it returns ...
1
vote
1answer
309 views
How does facebook match access token to the consuming application
I have been trying to wrap my head around creating a RESTFul API using Oauth for both 2-legged and 3-legged authentication scenarios. I have read a lot of articles and I am at the moment just very ...