From Facebook Developer Page

learn more… | top users | synonyms

49
votes
7answers
28k views

How to extend access token validity since offline_access deprecation

Since the offline_access Permission is deprecated in Facebook's Authentication flow, we have problem geting the so called long lived access tokens without that permission. In Facebook's document ...
4
votes
1answer
6k views

Facebook 60 day access token and Deprecated Offline_Access

Facebook's "Deprecated Offline Access" doc (http://developers.facebook.com/docs/offline-access-deprecation/) states the following: *Server-side OAuth Developers If the access_token is generated ...
1
vote
0answers
471 views

IOS: SECURITY WARNING: The above URL is not valid for a cash card or gift card

My IOS app uses a facebook login button. When you click on the button, it brings up the Facebook login prompt. After entering your information, it brings up a white screen that says: SECURITY ...
2
votes
1answer
1k views

Facebook iframe app being redirected out of canvas after user authorization

My facebook app is being redirected to the canvas url (http://my-domain/app) after the user has authorized the app. The sequence of steps is described below: 1) A new user opens the app in canvas and ...
17
votes
2answers
4k views

Get application id from user access token (or verify the source application for a token)

I found this question, which has an answer, but facebook changed the token format since then, now it is something like: AAACEdEose0cBACgUMGMCRi9qVbqO3u7mdATQzg[more funny ...
13
votes
2answers
2k views

How do I/Can I create a Facebook app for my company without using my personal Facebook account?

My question is similar to this, but I'm writing from a developer's perspective rather than the company's. I prefer to keep my personal and professional lives separate, and thus would like to be able ...
10
votes
6answers
13k views

Facebook Authentication - Unsafe JavaScript attempt to access frame with URL

I am trying to implement Facebook Login System into my website. While it try to connect to facebook, I get an error from console log: Unsafe JavaScript attempt to access frame with URL ...
4
votes
2answers
1k views

Access token immediately invalidated

for a few users (maybe not that few, considering the number of related mails I'm receiving) the access token associated with an OAUTH authorization seems to be immediately invalidated. The user is ...
0
votes
2answers
1k views

OAuth Error: This IP can't make requests for that application

I just started to get random This IP can't make requests for that application. errors with my app. My server's IP address is on my whitelist from my app's settings, and it was working perfectly, but I ...
1
vote
0answers
607 views

How can I remove all potentially cached tokens or session IDs on Android?

An odd question, but hopefully someone has an answer. I am developing a mobile app that will connect with Facebook. Everything was working fine and had been for about a week. I could authorize and ...
0
votes
1answer
40 views

Specify multiple redirect URIs for facebook OAuth2

My web application is deployed to a production site, but I also need to perform local development. Besides, I have a couple of test servers where I perform different testing activities. I would like ...
11
votes
5answers
9k views

Java example how to login with Facebook account on GAE using OAuth

I searched a lot, read many blogs, articles, tutorials, but until now did not get a working example that I could use face book account to log into my application. I know that i have to use OAuth, get ...
3
votes
5answers
845 views

Facebook OAuth “An Error Has Occurred”

I'm having issues getting users logged in with my OAuth Dialog. This was working earlier today, so I suspect that it might be in conjunction with the February Breaking Changes. See for yourself in ...
2
votes
5answers
1k views

Authenticated Referrals & Server-Side Auth Flow - What is the redirect_uri?

From an authenticated referral (such as from a timeline story) to my website, I am trying to use the server-side authentication flow to obtain an access token for the referred user. I need to pass my ...
5
votes
1answer
3k views

Oauth 2.0 cannot get an access token from the signed_request 'code' value

I'm migrating to Oauth 2.0. My current site uses JS SDK, has a fb-login button, then I'm accessing Graph to get the users details. I'm having problems getting an access token to get this data from ...
4
votes
2answers
4k views

python oauth 2.0 new fbsr facebook cookie, error validating verification code

I'm trying to use the new fbsr_{{appID}} cookie. I'm using the following functions to parse it, but when I try to get the access_token afterwards, I get 'error validating verification code' message. ...
3
votes
0answers
244 views

reauthenticate feature has changed its behavior?

In my application to be able to switch to another user, I use the "auth_type=reauthenticate" parameter for the "https://www.facebook.com/dialog/oauth" URL. This worked for a long time. I was able to ...
2
votes
1answer
539 views

MVC 4 oAuth With Facebook does not return email address

I am experimenting witht he MVC 4 oAuth that was released this month. Can anyone point me to where I can add eMail address so that I can store that with user properties? I need to be able to send a ...
1
vote
0answers
603 views

Login with Facebook : Uncaught OAuthException: (#5) Unauthorized source IP address thrown

We have implemented login with facebook in one of our site. It was working fine befoe August, 2012. But suddenly It stopped working after that time. Now it shows... Uncaught OAuthException: (#5) ...
1
vote
2answers
489 views

Spring Social - 404 error for facebook login

I have spring 3.1 with spring security login in my app. I am trying to add facebook login using spring social to it. It goes to the facebook login page but post log in it throws a 404 error. I have ...
0
votes
4answers
2k views

Login to website using Facebook account

I want to implement SSO in our current website so that we can login to that website using a Facebook account. Can you please provide the steps which I need to follow to implement it?
0
votes
0answers
928 views

Error Message #100 when using Facebook open graph api

I have managed to get an access token into a Facebook app dynamically but when I try and publish an action I get the error: { "error: { "type": "OAuthExeption", "message":"(#100) Application ...
0
votes
1answer
809 views

Facebook PHP SDK - Post to user's wall as app and not user. How?

I have a few questions about Facebook PHP SDK I haven't found the answers to yet, hope someone here can help. I have made a page where users connect to Facebook to be able to share things via my site ...
6
votes
2answers
3k views

OAuthException “(#210) Subject must be a page.”

I Keep getting OAuthException (#210) Subject must be a page. error even if I am using the Page Access Token and not the App Access Token. I am using the following: Latest JavaScript SDK from ...
3
votes
1answer
452 views

Sign in with Facebook oauth, without full facebook.com access

A web application I'm currently developing needs users to be able to sign in via Facebook OAauth. However the problem is, all these users are behind a firewall that blocks access to facebook.com ...
3
votes
1answer
2k views

How can I force login with the OAuth API?

Is there a parameter I can pass to https://www.facebook.com/dialog/oauth that will force the user to login again? The problem is if the user is logged into Facebook, it will redirect transparently ...
3
votes
2answers
11k views

OAuth facebook API tutorial [closed]

Can somebody suggest me OAuth facebook tutorial with examples ? I need to authenticate user in app with fb and I am curious what data I can get.
1
vote
1answer
515 views

(OAuthException) (#200) User must have accepted TOS on C# - Facebook

Well, I am trying make a app to write comments to facebook in C#. Searching in google I know that I need an Application (I did it) and I need select the permissions. I did it.. Now I wrote my code in ...
1
vote
1answer
145 views

JS SDK and Login Approvals (Two-Factor Authentication)

I'm seeing an issue pop up with a couple users trying to authenticate to our site. We use the JavaScript SDK just for the OAuth workflow; and the users are entering their Facebook credentials, but ...
0
votes
1answer
149 views

Facebook access token expiration how to get extended? perl desktop app

I made a Perl script for Facebook but it doesn't work after a period of time, or if I log out. I think this is due to the access token expiring. Could somebody help me to extend the expiration of ...
0
votes
2answers
207 views

Facebook oAuth implementation for blackberry

I am working on a blackberry native application, which uses the features like Facebook and twitter sharing of messages. After goggling I found that I could make use of Facebook SDK in order to ...
0
votes
1answer
2k views

Automatically invoking FB.login on Facebook page tab app for non-logged in user

I have a Facebook Page tab app. For a user who is not logged in, I want to: Detect if user is not logged in If not logged in, automatically direct user to login My current approach is to use FB ...