0
votes
0answers
5 views

You have already authorized this app (Facebook SDK 3.5 for iOS) [duplicate]

When I use FBWebDialogs always appears "You have already authorized this app", how can I avoid this message ? [FBWebDialogs presentDialogModallyWithSession:[FBSession activeSession] dialog:@"oauth" ...
0
votes
0answers
11 views

OAuthException: (#1) when posting the same message to multiple pages concurrently

Our app is trying to post a text message with a bit.ly link to multiple Facebook pages. The first 29 messages where posted correctly but the rest returned the following error: OAuthException: (#1) An ...
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 ...
0
votes
1answer
36 views

Is it possible to get any information out of a Facebook Token without hitting the server?

With the old Facebook access tokens (Oauth1) it was possible to get a user's Facebook ID and the token's expiration without passing anything to the server. Is this possible with the new Oauth2 ...
1
vote
2answers
47 views

Facebook Canvas App Login URL doesn't look like other logins

So this is a canvas app, intended to run in the FB chrome. I'm using the FB php SDK. I'm creating my login url by: $loginUrl = $facebook->getLoginUrl( array('scope'=>'email,publish_actions', ...
0
votes
0answers
46 views

This authorization code has been used. (Only Some Users)

We have a Drupal site with the Facebook OAuth module installed. For some reason, we are noticing this error, This authorization code has been used, for only some users. I have personally tested ...
5
votes
1answer
147 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 ...
1
vote
1answer
80 views

Facebook Error Codes list?

Is there a place where I can find complete list of Facebook's error codes? In my app's stats I have a few 1340004 errors: Method: dialog:oauth:touch Error Code: 1340004 Failures: 436 Sampled Method ...
0
votes
1answer
100 views

Facebook always return error when authorizing my application

I'm trying to build a Facebook app, but everytime I click in authorize, I got an error. In the code, I'm calling the Facebook API like this: https://www.facebook.com/dialog/oauth? ...
-1
votes
2answers
139 views

Facebook OAuth Login: Invalid site URL and Invalid app domain

My app's domain is thehub.j.layershift.co.uk In the "App Domains' box, I'm attempting to put: thehub.j.layershift.co.uk I also have selected Website with Facebook Login and in the Site URL box, I'm ...
1
vote
1answer
57 views

Access Facebook page statuses with an app access token

Reading the API docs (https://developers.facebook.com/docs/reference/api/page/) I assumed that in order to read a public pages status updates, I would require "any valid access_token or user ...
0
votes
1answer
147 views

Meteor.loginWithFacebook not working?

having added the accounts-facebook package. Im trying to login with facebook following the docs: http://docs.meteor.com/#meteor_loginwithexternalservice Having this button click event: ...
0
votes
0answers
62 views

rails facebook app logout issue

I am newbie. I am using fb_graph gem in my Facebook app but the problem is when I click logout from the app it logs out only from the app not from facebook. I want full logout, meaning from Facebook ...
5
votes
1answer
173 views

facebook oauth can't logout user who doesn't accept permissions

I have a facebook application that runs in a kiosk at my restaurant, it allows users to check-in. That works great, if they log in and accept the permissions needed, it then lets them logout when ...
3
votes
5answers
847 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 ...
0
votes
0answers
98 views

Facebook OAuth working locally, but not from production

I just got back on a 8 month old project which used Facebook Connect. Everything worked fine at the time. I put my app in production again a few days ago and I'm stuck with this facebook OAuth error : ...
0
votes
0answers
57 views

How do I correct my implementation of Facebook signup?

The code below renders a form with a "broken image" icon and "undefined" beneath. I am using it while my browser is signed in to Facebook. What do I need to get a working "sign in with Facebook" ...
0
votes
1answer
558 views

Facebook access token validity

I use Facebook server side login flow to obtain a long-lived access token, which is valid for 60 days. Since I need access to the user's account all the time (i.e. I always need a valid access token), ...
0
votes
1answer
52 views

Is this process correct for maintaining long-lived Facebook Access Tokens when the user may not have access to the FB account?

I am creating a system to allow our clients to create articles and post them in our CMS. The one feature we are being asked to implement is that when an editor publishes an article, that that article ...
0
votes
2answers
108 views

How to set the Oauth Facebook

my project asp.net-mvc4 not come configured Oauth, I see that in the tutorials the projects have the folder App Start / Auth.Config - in my project does not have these files, as I start the project ...
1
vote
2answers
150 views

Facebook OAUTH token is always NULL

Ever I send a token request to Facebook I receive a NULL response. Not a exception or success response. Always NULL $this->facebook = new Facebook(array( 'appId' => 'APP ID', 'secret' ...
0
votes
1answer
73 views

Oauth - Merging Accounts-Do Twitter and Facebook use same Oauth Id?

I am building a small app that uses Facebook and Twitter credentials to login/register to use it. I was wondering if once the user has completed registration if there are any known strategies to ...
0
votes
0answers
98 views

Signing up in PhoneGap app with Facebook credentials

I'm considering to build a PhoneGap app that consumes data from my API (after authentication) and lets the user to sign up/log in with his Facebook credentials. However, I'm not quite sure how the ...
0
votes
1answer
763 views

OAuthException code #2 for particular account when using SessionLoginSample

We've run into a very strange case in which a particular Facebook account fails on a request to 'https://graph.facebook.com/me/friends?access_token=XXX' after successful login. After discovering this ...
0
votes
0answers
90 views

Facebook Uncaught OAuthException, trying to login with Facebook

I am trying to implement WP login onto a site. I use the JavaScript SDK to login, with the FB.login method. If the login succeeds, it redirects the user to the file fb_login.php, where i try to catch ...
7
votes
2answers
486 views

Facebook Login Error: failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request

I'm trying to follow the example to create a server side login to Facebook from here, but with no luck. In step 7, when I try to exchange the code with a token and store it in a session for later use, ...
1
vote
0answers
267 views

Login with Facebook in wifi hotspot

we're developing a wifi hotspot captive portal where users can authenticate with their preferred social network credentials. Of course before user's login on captive portal he/she can't reach ...
2
votes
1answer
102 views

O-Auth 2.0 - Server-side Login

I am developing a web-service and I would like my users to log-in using some known authentication provider (facebook,google,etc..) instead of registering a new user. I will take Stack overflow as an ...
0
votes
2answers
893 views

How to connect Facebook, Twitter & Google accounts in Java (Spring MVC)

I'm going through the features of social auth (http://code.google.com/p/socialauth/) & wondering if this is the best thing for my requirement. Please guide. My web application currently has it's ...
0
votes
0answers
214 views

renew oAuth tokens on Android without opening a webview

I'm building an app that will integrate with facebook, twitter, instagram, g+, youtube. The google services is simple as I can ask for a token to the AccountManager (or even simpler the ...
1
vote
1answer
377 views

django-social-auth for Facebook is redirecting home and not logging in

I have had django-social-auth working for Google for quite some time now but am having problems with Facebook. I am at the point where clicking on the /login/facebook/ link will take me to the ...
0
votes
0answers
401 views

Facebook api update logic access_token

I have Social class for work Facebook-PHP-API class Social { private $appId; private $secret; private $name; private $context; private $tocken; private $uid; ...
1
vote
2answers
97 views

How can I access multiple API´s (Facebook and Twitter) on one user?

I am always reading about Facebook and Twitter logins for someones website. The integration using one of theses services is okay, but my questions is how can I access both API´s for one user. ...
0
votes
0answers
95 views

Passing OAuth token from device to server: poor form?

I want to do the reverse of what's described here: Can I use oauth token at client side? I'm building a service that performs Facebook Graph API lookups on hyperlinks. It so happens that the Facebook ...
4
votes
3answers
1k 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: ...
0
votes
1answer
261 views

FB OAuth returns access token but no expires value

Description: I have a problem with the OAuth service "randomly" not returning the "expires" value. The application uses Server-Side Authentication with simple WebRequests and Redirects (no SDKs) and ...
1
vote
2answers
105 views

Why do iOS apps recently change authentication method?

Recently I just notice how Path, Pinterest, and the like change the way they authenticate their users. Currently it seems that they require us to create an account associated with Facebook or Twitter. ...
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
votes
1answer
703 views

Facebook OAuth after get my access token - C# ASP.NET

I need some help. I don't no what to do after the user allows my application. On my pageLoad I verify if the URL has code(generated by Facebook) and redirect again with the string code to get the ...
0
votes
1answer
647 views

Always get “Error validating verification code.” when requesting access_token

Well, I have done all my best to try to solve this problem, but, still, it's too annoying. I decided to use OAuth with server-side authentication. So, I have followed Facebook documentation, and I ...
0
votes
1answer
77 views

Clicks on OpenGraph links in timeline fail to authenticate with “Error validating verification code”

I'm trying to authenticate users coming to my site from a click on an opengraph action in facebook. I've generate the action successfully with the following code. This goes out to my timeline ...
2
votes
2answers
453 views

How to manually set an authResponse from an access token generated during server-side authentication

I am writing a web application using server-side authentication, and I've been trying to figure out a way to leverage Facebook's Javascript SDK in my application. The documentation for FB.init ...
0
votes
0answers
51 views

oauth redirect response to an external server

I am working on a metro app which makes an OAuth request for Facebook.Is it possible to redirect the Oauth token directly to my external server rather than getting it on the client and sending it to ...
1
vote
1answer
732 views

How to read the wall of a private Facebook Group through a stand-alone python script?

We're making a game and for that game I need to 1) get all the messages in a private group's wall 2) parse the new messages since the last time I checked 3) other stuff not relevant. I already wrote ...
4
votes
1answer
510 views

What is the standard with oAuth for remembering users?

Me and my colleagues developing an application (both web application and mobile app(iPhone & android)), which includes a login process. Currently, we have our own login mechanism (where users ...
2
votes
0answers
319 views

Facebook PHP SDK throwing Unauthorized source IP address error

I recently discovered that one of our production servers is giving a fatal error when we try to issue an FQL query via the Graph API. The exact same code on other servers works perfectly. The ...
1
vote
2answers
1k views

Cant figure out login with facebook using Oauth2.0

I'm new to the whole system about logging in with facebook. I just read about the OAuth2.0 system by facebook and i did understand how it works but i'm unable to understand how to make it work with my ...
0
votes
1answer
139 views

How do I point my Heroku OAuth/RoR app to curl-ca-bundle.crt?

I am using Oauth to connect to facebook, and it works fine for local development. I want to run this on Heroku however, and there I get this error: 2012-06-14T15:50:16+00:00 app[web.1]: ...
0
votes
1answer
120 views

Are there different types of app access tokens?

The documentation for Real-time Updates says: In all cases, you must send an OAuth Application access_token. App access tokens are obtained using your App ID and your App Secret: ...
0
votes
0answers
653 views

OAuth login with facebook, google account, etc

I'm developing an android app which makes connection with facebook, twittter, google, etc... and know what I'm doing is logging againsy providers with my oauth's ids and so on. Now, I'm just getting ...

1 2