Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

From Facebook Developer Page

learn more… | top users | synonyms

2
votes
0answers
13 views

Facebook oauth for accounts with managed page not switching (using Facebook as your page)

I have an application that uses facebook oauth and it is working fine. However, I am having problems when an account with a managed page is currently logged and is using Facebook as the page itself ...
-1
votes
0answers
7 views

Facebook automated oauth & posting w/out user interaction using PHP/Perl

Is there a way on Facebook to implement automated posting & authentication (oauth) without user interaction? I am planning to create a cron job using PHP/Perl with that kind of functionality. I ...
0
votes
0answers
20 views

Facebook OAuth creates new user each time using Passport and Express

I am using the Passport node module in conjunction with Express to enable users to login via facebook, twitter, and google. I have setup facebook and twitter so far and users can login successfully, ...
0
votes
2answers
96 views

Login with facebook on native android app and send access token to remote server

I'm new to oauth concept. I'm working on an android app which uses facebook login to authenticate. After the authentication is done I want to send the access token to my remote server and make API ...
0
votes
0answers
17 views

obtain returning code from facebook authentication through c#

I've done some searching around and i'm trying to obtain facebook authorization through c# (not using the sdk... boss doesn't want to cause we are only doing like 4 things with facebook and sdk will ...
0
votes
0answers
53 views

Facebook tab app login flow interupted by error message

I have created a facebook tab app that i need to make sure has logged the user in and then has asked the user to grant my app the minimal permissions. I originally tried using the javascript sdk to do ...
0
votes
1answer
46 views

Facebook authentication, return_uri, and my local uri

I'm using facebook authentication on my site, with the "Login with Facebook" button in my nav menu on every page. Therefore the user should be able to login via facebook and be returned to the page ...
4
votes
1answer
95 views

Unable to extend some users' access tokens for our application

We've been having an issue where some of our users only receive shortlived access tokens even after going through the server side oauth flow and extending the token. After doing a bit of debugging, ...
-1
votes
1answer
61 views

Facebook - Uncaught OAuthException: An active access token [closed]

I have this error that appears quite often, could you help me to correct this error. Fatal error: Uncaught OAuthException: An active access token must be used to query information about the current ...
0
votes
0answers
40 views

Facebook / How to identify the user to log in without following the whole Oauth workflow

Let's assume a website allowing its users to be logged through Facebook (with OAuth2 so) using the server-side solution (not the javascript SDK). Of course, redoing the process of authorization each ...
1
vote
0answers
26 views

Catch Facebook Oauth error

I am faced with a bit of a puzzle. I built a Facebook login that can be configured by whoever uses it. The problem I am facing is due to the scope errors thrown if an invalid one is configured. ...
-1
votes
0answers
32 views

Graph API “can_comment” FIELD is not available for page tokens

I am trying this Graph API request to find out if it is possible to reply on selected comment: {comment_id}?fields=can_comment In Graph API Explorer (testing console) it works. { "can_comment": ...
0
votes
0answers
20 views

How to Reply on Comment via Facebook Graph API?

I am trying to reply on selected comments in help with this Graph API Request: POST: 259935357480825_1069893/comments?message=test It works in Graph API Explorer (Testing Console), but if I use my ...
0
votes
2answers
66 views

Facebook OAuthError - Can't post a public post to user's feed

I want to be able to post to a users wall, (a message he edits). But if the user didn't allow posting on his behalf, then I get the following error: (#1) An error occured while creating the ...
0
votes
0answers
7 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" ...
1
vote
1answer
211 views

Fix Rails oauth facebook x-frame-options sameorigin error

I can't for the life of me get my Facebook canvas app to display. Chrome console displays this error and nothing shows up inside the iframe - it's blank: Refused to display 'http://mysite.dev/' in ...
0
votes
1answer
105 views

Refresh token and Access token in facebook API

When we do oauth2 on google api, we get an access token and a refresh token. Suppose I'm writing a service and I want to periodically poll for changes I can just use refresh token to get fresh access ...
0
votes
1answer
34 views

Facebook App Configuration

My app has been working fine for a long time but now this error comes up during the facebook authentication. Any suggestions to solve this issue Given URL is not allowed by the Application ...
0
votes
0answers
19 views

Anyway to get app info into OAuth Dialog

I know this has been posted before, but I haven't seen a definitive answer only a bunch of "I thinks" or no answer. The Facebook documentation shows a much more in depth dialog box with information ...
0
votes
0answers
27 views

how to change the text “shared via xyz app” when we publish a post via opengraph api?

I am working on a web application wherein I need to publish a post on behalf of a user who has authenticated against my app. (oauth) The access_token I have for the user has "publish_stream" ...
0
votes
0answers
90 views

Valid access token not work in Graph API Explorer

The Facebook Access Token debugger say that my access token is valid: Issued 1368430222 (24 minutes ago) Expires 1373614222 (in about 2 months) Valid True But when I test it in the Graph API ...
0
votes
1answer
66 views

Display custom message when asking for facebook permissions

Is there any way to display a custom message when asking for permissions with facebook js sdk? For example if I ask for email permissions, I would like to add a message "Your email is needed in order ...
0
votes
1answer
63 views

Facebook oauth authentication is redirecting to localhost instead of to my domain

While authenticating via OAuth, Facebook is redirecting to localhost instead of to my domain. I'm using django-allauth for facebook authentication. Someone at GitHub pointed out that the error could ...
0
votes
0answers
17 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 ...
1
vote
0answers
64 views

Getting Generic Access Token, Invalid callback

I am trying to get a generic facebook access token. All the tutorials I read recommend using the call below. https://graph.facebook.com/oauth/access_token? client_id=YOUR_APP_ID& ...
0
votes
1answer
54 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 ...
1
vote
0answers
62 views

Looking for the right way: Spring Social + Spring RESTful API + Spring WebApp + Mobile Clients

I have a RESTful API built with Spring 3.1, using Spring Security as well. I have a web application, also a Spring 3.1 MVC application. I am planning to have mobile clients accessing my REST API. So ...
1
vote
2answers
37 views

JSON sub level value c#

I have a Facebook reply as follows: dynamic response = client.Get("me", new { fields = "verified, picture" }); BELOW IS THE JSON IN 'response' {"verified":true, ...
0
votes
1answer
227 views

Facebook oAuth with Phonegap 2.3.0 not returning token as url param at success url

I am trying to integrate Facebook oAuth with my Phonegap 2.3.0 application so that I can post to the user's wall. I am able to use the library from here: Phonegap oauth with some modifications to ...
0
votes
1answer
46 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 ...
2
votes
1answer
163 views

External Login Account vs. Native Login Account

I am brand new to Visual Studio 2012 and MVC 4, and I've been working with the SimpleMembershipProvider via the WebMatrix.WebData library. I'd like to integrate Facebook as an external login source ...
0
votes
1answer
280 views

window.open without popup blocker using AJAX and manipulating the window.location

When dealing with OAuth from the server, such as Twitter and Facebook, you most likely will redirect the user to an URL asking for app permission. Usually, after clicking a link, you send the request ...
0
votes
1answer
49 views

Facebook OAuth Dialog not showing app description

My site uses Facebook Login to retrieve user information for form submission. The permissions dialog stemming from FB.login() does not show the "About this App" section... is there any way to get ...
0
votes
1answer
36 views

Facebook Login takes me to Help Page

I have had the facebook connect set up for over a few months and have done a lot of testing on it and everything seems to be working correctly. Suddenly when I try to login using the php facebook sdk ...
0
votes
1answer
92 views

What am I doing wrong in localhost Facebook app development?

App Domains: localhost Website with Facebook login: http://localhost/auth I go to http://localhost/auth/ and in my Chrome developer console I see the error: Given URL is not allowed by the ...
0
votes
0answers
76 views

API Error Code: 100 Error Message: Some content in this message has been reported as abusive by Facebook users

Today, out of nowhere, my app has stopped working. I'm getting this message and when i click ok, he redirect and get a server error. API Error Code: 100 API Error Description: Invalid parameter ...
0
votes
1answer
70 views

State-of-the-art session management with OpenID and OAuth2 for web apps

I'm implementing an authentication part of my web app using the App Engine (Java), OpenId (for Google signin and so on), and OAuth2 (for Facebook signin). Important requirements include "keep me ...
2
votes
1answer
53 views

Facebook login doesn't work inside Twitter iOS App

I have a RoR / JQuery Mobile app that uses Facebook OAuth for authentication. It all works fine when accessing it via any normal browser on desktop and mobile with one exception. If a user clicks a ...
1
vote
2answers
76 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
39 views

Facebook Ads API: how does offline_access work?

If you have a preferred developer app with access to Ads API you can ask for the offline_access permission, according to the docs How does it work? When I obtain the token, I get something like: ...
1
vote
0answers
95 views

Facebook oauth redirection is not working properly

Today my application started to fail on Facebook oauth when my redirect URI has a hash string. Until yesterday it worked. Here the scenario: On redirect to Facebook the url: ...
0
votes
0answers
21 views

Occassional Oauth exceptions - user hasn't authorized the app

I am fairly sure my application is handling most things properly as it works 88-92% of the time, but way too often I am getting the following error: (OAuthException - #200) (#200) The user hasn't ...
0
votes
0answers
35 views

Unable to retrieve public events in Facebook with an app token

I'm working on a server side application which needs to retrieve all recent public events from Facebook. I managed to get an app authentication token as described in ...
1
vote
0answers
70 views

Merge facebook, twitter and foursquare friends PHP, any suggestions?

I have been working on fetching user's friends from facebook, twitter and foursquare for about three months using PHP and their respective SDKs. Successfully I fetched the friends list and I stored ...
0
votes
0answers
50 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 ...
0
votes
1answer
89 views

Facebook PHP SDK - OAuthException - Active token is valid in http request but in code not

I am getting this error when i open my app canvas. I already found out in which line the error comes up. User is logged in <-(echo by php) Short Token is: XXXTOKENXXX <-(echo by php) Fatal ...
2
votes
1answer
154 views

Facebook app on infinite loop trying to log in out of canvas

When I try to access to my app from http://apps.facebook.com/myapp (FB canvas) it is working fine. However, if I do directly from http://myapp.herokuapp.com (out of canvas), after entering my FB ...
5
votes
1answer
178 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
70 views

Facebook access token missing expiry property (after offline_access deprecations)

I have a FB app that used to ask for offline_access permission. At some point I changed that and to use the 60 days valid access_tokens. Now, I am storing in db the access token and the expiration ...
0
votes
0answers
16 views

Private Authentication API for trusted partners

On this forum I have read about Facebook private Authentication API for trusted partners. As I understand this API allows trusted partners to login without using the OAuth 2.0 workflows. Does anyone ...

1 2 3 4 5 10