Tagged Questions
15
votes
1answer
5k views
Don't understand “(#4) User request limit reached”
{
"error": {
"message": "(#4) User request limit reached",
"type": "OAuthException"
}
}
I'm not sure the cause of this error, and yes I've done lots of searching around for similar ...
14
votes
1answer
6k views
rails omniauth facebook extended permission
I have read the omniauth oauth rdoc
@consumer = OAuth::Consumer.new(key, secret, {
:site => "http://term.ie",
:scheme => :header,
:http_method ...
13
votes
2answers
11k views
Facebook Access Token for Pages
I have a Facebook Page that I want to get some things from it. First thing are feeds and from what I read they are public (no need for access_token). But I want to also get the events... and they ...
11
votes
1answer
2k views
When should the server-side vs. client-side Facebook authentication flows be used?
Facebook has two flows for Authentication, client-side and server-side. When should each one be used?
Facebook docs: https://developers.facebook.com/docs/authentication/
Possibly related: What is ...
10
votes
1answer
2k views
Facebook: sending an iOS access token server side and signing with App Secret
I am writing an iPhone app that uses Facebook extensively. Right now, I'm getting the access token using the iPhone Facebook SDK. This returns me a standard access token.
I'm sending this token ...
8
votes
2answers
9k views
Can I store Facebook access token and use it later?
I am building a web app (PHP) that uses FB connect. I successfully register / sign in user with the help of the PHP lib provided by facebook. Also I can post to wall, using this code
...
7
votes
4answers
8k views
Liking a page on behalf of a user?
I'm trying to get a user to 'Like' a page via the SDK. User is signed in and I get a valid access tokken form the cookie. My APP has asked for permissions read_stream and publish_stream. I can ...
7
votes
5answers
16k views
“An access token is required to request this resource” while accessing an album / photo with Facebook php sdk
I am using the php sdk to access a user's albums and photos in a website.
I am able to login and also able to retrieve all the info about the albums and photos.
However, I am not able to display ...
6
votes
1answer
546 views
Does Facebook actually support OAuth 2.0?
I've already succesfully implemented LinkedIn and Twitter Oauth 2.0 authorization in my App with external libraries. But I have problems with Facebook. It seems like it has different authorization ...
5
votes
1answer
171 views
Facebook OAuth issue? Infinite loop changing “state” parameter on URL
Our app was working fine but, without any change on our side, when we tried to enter our Facebook app outside the canvas (directly on http://example.herokuapp.com), and after providing our FB user and ...
5
votes
2answers
2k views
How to post a score from the Facebook JavaScript SDK
I want to submit a score from the JavaScript SDK.
Here's my current attempt:
FB.api("/me/scores", 'post', {score: seconds, access_token: FB.getSession().access_token}, function(response){
if ...
5
votes
2answers
1k views
Facebook - OAuth Token - redirect_uri isn't an absolute URL
... but it is!
I am calling the facebook API with the following link in order to receive my access token:
...
5
votes
3answers
2k views
How do you get long-lived access tokens from the Facebook Graph API (server-side auth)?
Since Facebook is removing the offline_access permission, I want to go ahead an migrate our website to use the new system.
I found this document on Facebook's website:
...
5
votes
1answer
274 views
OAuth Token Differences between Facebook and Twitter/LinkedIn
This may very well be an offensively stupid question, but I can't find a quick and concise answer to it for the life of me. So here we go...
I am currently implementing Facebook, Twitter, and ...
4
votes
1answer
6k views
How to get publish_stream permissions for facebook app?
I have an app which has been running for a while which has only requested some account information for login purposes. Now I want to use it to publish to the stream. I have added publish_stream to the ...