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.

Programming language constructs designed to handle errors signaled by error codes, exceptions or other language specific means.

learn more… | top users | synonyms

0
votes
1answer
13 views

facebook publish_action - check if skip pressed

I want to use the Facebook publish_action permission to post on user's timeline. This presents a page which asks for permission and there are 2 buttons Okay and Skip. However when I test both ...
0
votes
0answers
8 views

Facebook Personal Profile to Page Error

We're changing a Facebook personal profile to a Facebook page. Facebook automatically inserts the shop name into the page name field (at the Create Page stage). Whenever we submit this we get the ...
0
votes
1answer
100 views

Issue using FBRequestConnection error handler for fetching Facebook data

For fetching all the friends details at a time,I have used FQL query and FBRequestConnection with error handler to save all the data in to an array i.e. - (void)fetchFriendDetails { NSString* ...
0
votes
0answers
61 views

url_like query failing due to

I am trying to perform an FQL query of url_likes for my friends. SELECT user_id, url FROM url_like WHERE (user_id = me() OR user_id IN (SELECT uid2 FROM friend WHERE uid1 = me() LIMIT ...
0
votes
0answers
28 views

Application error

I have created application on facebook to connect my facebook with my blog on WP. I have entered the app id and the key to settings of my plugin, but it can not authorize me. { "error": { ...
0
votes
0answers
79 views

facebook api high error count on insight page

We are experiencing high error count in the facebook insight. We encountered at an average of 10k daily api error since jan 29 (previously its around < 10 error). when we check it coincide with ...
-1
votes
1answer
205 views

HTTP/1.0 400 Bad Request

My question is simple: How do i hide the warning message below so that users don't see it? It appears at the top of my site from time to time. Warning: ...
0
votes
2answers
178 views

facebook blocked my json request

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> ...
0
votes
0answers
55 views

Adding Error call back to HTTP

I want to add an Error call back to this HTTP call. I have done a lot of research on how to call back but still not sure how you do it. I would like to know where I put the call back and what I should ...
0
votes
1answer
73 views

How to detect if API is down?

As I type this the fb:like button is down - the Facebook API health page is reporting errors https://developers.facebook.com/live_status I am sure it will be back soon, but how can I detect this? The ...
0
votes
1answer
86 views

Feeding in Facebook API Error Code 191 - what I am doing wrong?

I just tried,read everything - but somehow I was still not able to manage this problem. Does anyone have a clue ? For details look here : ...
0
votes
0answers
215 views

Catching exception caused by network error during Facebook photo upload

I have done photo uploading to Facebook event page, mostly by following this tutorial. The result is satisfactory so far, with photos being uploaded to the event page most of the time. However, ...
0
votes
1answer
66 views

Using Greater Than In FQL Queries

Can anyone tell me why this works: https://graph.facebook.com/fql ?q=SELECT display_name FROM application WHERE app_id=0&access_token=... (and returns 0 results, obviously) but this doesn't: ...
0
votes
1answer
1k views

php :No node specified thrown in base_facebook.php

hi I am using this code to make api call: function foo(){ require_once 'facebook.php'; $facebook = new Facebook(array( 'appId' => $facebook_appid, ...
0
votes
1answer
3k views

“Feed action request limit reached” - Facebook SDK

I am getting this error from the Facebook SDK. Please help me to solve this problem, if possible. "Uncaught OAuthException: (#341) Feed action request limit reached thrown in..."
1
vote
1answer
1k views

no way to create / register first application

I tried to create my first app. I went to https://developers.facebook.com/ and clicked on 'applications'. Then facebook redirected me to my facebook page. There was NO button to '+add an ...
0
votes
1answer
166 views

MVC 3 Facebook integration error

I am trying to integrate Facebook log in on my mvc3 website but, whenever I click on the login button it comes up with this: An error occurred. Please try later I am following this tutorial The ...
3
votes
1answer
2k views

Uncaught OAuthException - how to catch this error?

I have the below error. How am I supposed to catch this error? Fatal error: Uncaught OAuthException: Error validating access token: User 638720122 has not authorized application ...
3
votes
1answer
2k views

Errno::ECONNRESET: Connection reset by peer

I am using Rails application and MiniFB Gem to call Facebook Api. I got following exception Errno::ECONNRESET: Connection reset by peer And following is the backtrace:- Backtrace : ...
0
votes
1answer
143 views

How do I show errors returned from the Javascript SDK

I'm working on a script that combines both the PHP and Javascript SDKs. It's a pretty basic script, and for the most part it works, but it's going to be used by others and I'm trying to make it a bit ...
3
votes
1answer
188 views

fbgraph error code

Does anyone know where can I find all the error code and error type for FBGraph? While handling error, I want to check what error FBGraph throws (like: duplicate post error, access token expire error) ...
2
votes
2answers
2k views

How can you tell what kind of error a graph api error is programmatically?

When sending a post to my feed on Facebook using the /me/feed endpoint, I've gotten different kinds of errors back. When I sent the same post twice, I got a 400 http status and this error: ...
0
votes
1answer
892 views

Invite friends, facebook application development, stuck at last stage, using php-sdk

I am trying to develop a facebook application, the last step is unfinished, that of inviting friends to play the app. i try the following code, but i am getting error. Please suggest how to go about. ...
0
votes
0answers
2k views

Best way to handle Facebook Error Response Codes using Server Side Java?

Don't know if this particular forum is the best place to ask this question... What is the best way to handle error response codes generated from Facebook REST API calls using server side Java? For ...