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.

An exception is a rarely occurring (exceptional!) condition that requires deviation from the program's normal flow. Normally, an exception should not result in total failure, but instead be attended by an exception handler. Exception handling is a built-in construct in many programming languages. ...

learn more… | top users | synonyms (1)

0
votes
0answers
33 views

Uncaught CurlException ..src\base_facebook.php on line 977

When I used facebook php sdk to run, there is a exception of result:Fatal error: Uncaught CurlException: 6: Could not resolve host: graph.facebook.com; No data record of requested type thrown in ...
0
votes
0answers
32 views

Blackberry Facebook SDK NoClassDefFoundError on OS 7.1

When I try to run Strawberry application (facebook-bb-sdk-0.8.25), it runs well on BlackBerry OS 5.0, 6.0, and 7.0. But in OS 7.1 it throws exception NoClassDefFoundError right after the icon was ...
0
votes
0answers
16 views

Service temporarily unavailable - PHP SDK

When ever I try to get a large data set say, I am writing an FQL something like select ...
0
votes
0answers
118 views

Uncaught CurlException: 35: Unknown SSL protocol error in connection to graph.facebook.com:443

I keep getting this error, and it seems like it has appeared out of nowhere. I've been working at my project for some weeks, and this didn't show up until now. When I try to run my app on localhost, ...
3
votes
1answer
717 views

Graph OAuthException 1500 : The url you supplied is invalid

As of today, almost all of my app's calls to share links on user's feeds are failing with the following error: { "message": "(#1500) The url you supplied is invalid", "type": ...
0
votes
1answer
44 views

Code should be throwing an exception but it doesn't

The below code posts an image to a Facebook page. However, when it fails (for whatever reason), it is not throwing any exceptions, so I cant find out the root cause of the failure (only a generic ...
0
votes
1answer
116 views

GraphMethodException - Unsupported get request at

I have two Debian-systems. With both I access the Facebook-API via Perl(Facebook::Graph). On the first system this works perfectly, on the other system I ran into following problem. Could not ...
0
votes
1answer
47 views

Android Facebook exception

Google Play reports exception. Some people complain in comments as well. I do not get such exception myself. What should I wrap with try/catch to handle it? Or how do I fix it? Or how do I get ...
2
votes
1answer
119 views

Add Page Tab Dialog, a ReferenceError is raised on Facebook code - “ua is not defined”

I am launching the Add Page Tab Dialog using the FB.ui method of the Javascript API: FB.ui({method: 'pagetab'},function(response){ // code that records the page(s) selected removed }); If I ...
2
votes
0answers
92 views

Uncaught CURLEXCEPTION in facebook login - php sdk

Sometimes, especially, when I am not logged in Facebook, an error shows in my login page with the code pasted from the php-sdk. You can see the output at http://jnfp.tk/login.php. When I refresh the ...
0
votes
2answers
77 views

Best practice for throwing exceptions in an utility class

I am creating a utility class that will be used in my Facebook application for tasks that are commonly done, such as retrieving a Facebook Page ID from a URL. I am unsure if the below code is the ...
0
votes
0answers
308 views

OAuthException: An active access token must be used to query information about the current user

I've this error, but not always. (I use PHP SDK, latest version). If I'm logged into facebook and i try to register and login, then the app say it's ok! Also if i'm not logged into facebook, the app ...
1
vote
0answers
19 views

DataLayerException in a api call

In my logs I have one Facebook API exception and I don't find any information about it. Anybody knows this? The Exception is: [error] => Array ( [message] ...
1
vote
1answer
162 views

Calling FBSession.activeSession as instructed to in tutorial, results in NSException

I am trying to enable Facebook login in my iphone app. I am following the instructions on this page: https://developers.facebook.com/docs/howtos/login-with-facebook-using-ios-sdk/#step4 I have ...
0
votes
1answer
160 views

android.view.InflateException when calling facebook.authorize

EDIT 1/14/2013 - I tried redownloading the facebook SDK... Still the same error. I am getting android.view.InflateException caused by outOfMemoryException when calling facebook.authorize together ...
0
votes
2answers
66 views

Unable to invite someone to an event

Hi everyone here at stackoverflow, I am trying to create a facebook application that invites the person that uses it to an event. However I can't seem to get it to work. The POST always returns the ...
1
vote
0answers
344 views

Invalid API key Exception Facebook Php Sdk FQL

This code: $fql2 = "SELECT uid, name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = xxxxxxxxx)"; $params = array( 'method' => 'fql.query', 'access_token' => ...
2
votes
1answer
523 views

Fatal error: Uncaught Exception: 102: Session key invalid or no longer valid

Since yesterday (10 december) many of my apps have stopped working with executing facebook calls. For example calls for checking if the loggedin user has liked a page or getting all the albums of the ...
2
votes
2answers
816 views

Exception when calling SuspensionManager.SaveAsync()

I'm building a Windows 8 app and have come up with the following exception: SuspensionManager failed When running the following code: private async void OnSuspending(object sender, ...
0
votes
0answers
155 views

Class not found Exception while integrating FaceBook sdk 3.0

I'm trying to integrate a new facebook sdk v3.0 and I'm getting an error in logcat: 11-03 15:51:09.957: E/AndroidRuntime(22856): Caused by: java.lang.ClassNotFoundException: ...
1
vote
2answers
172 views

Facebook PHP SDK fatal error occures Facebook:: throwAPIException

try { $return = $facebook->api("/" . $userFromDB["username"] . "/feed", "post", array( message => "", picture => ...
0
votes
1answer
232 views

exception handling with the facebook php sdk

I have noticed that when uploading images to facebook album via created by my app using the php sdk for facebook, the sdk will occasionally throw an error. I got an error from the sdk a few times in ...
0
votes
1answer
157 views

Codeigniter hiding errors from libraries. Why?

So I has a small problem as I outlined here. I have made a new question because this is more general and will perhaps help others. So essentially, I integrated the Facebook SDK Into Codeigniter as a ...
0
votes
0answers
38 views

FacebookApiException: No free tasklets, queue full

Few times an hour I get this exception while using the PHP SDK of Facebook API (written to php error_log): FacebookApiException: sps server TApplication exception: :: No free tasklets, queue full. ...
0
votes
1answer
2k views

“Uncaught OAuthException: An unknown error has occurred.” while attempting to make a wall post

I am using the following script to post a link to the wall of Facebook page: ini_set("zend.ze1_compatibility_mode", "off"); require_once('facebook-php-sdk/src/facebook.php'); $appId = ...
1
vote
1answer
121 views

Handling facebook exceptions

maybe it is simple, but i do not know how to do it, so i ask. Sometimes i get an exception from facebook e.g. posting an action has failed. Normally it works but sometimes dont. I use the php sdk and ...
0
votes
0answers
433 views

Uncaught CurlException: 1: Protocol https not supported or disabled in libcurl thrown in …/base_facebook.php on line 886

I have developed a simple app for Facebook using PHP. It was working fine until recently when the above error message would show. I have did some research and one of the suggestions was to enable the ...
6
votes
1answer
4k views

NetworkOnMainThreadException on Facebook Login with Phonegap 1.6.0

I am currently creating an application using Phonegap 1.6.0 and Sencha Touch 1.1. Recently, when testing on a smartphone with Android 4.0.4, we discovered that the Facebook Login doesn't quite work as ...
3
votes
1answer
689 views

URL has too many redirects. Facebook won't be able to scrape this URL until the number of redirects are reduced

I am running an FQL Query using the PHP Library. It is in an app seeing heavy use and works fine. However, with one user (A internal QA tester), it is throwing a weird FB Exception that I can't find ...
0
votes
1answer
260 views

Exception: 100 using Comment Facebook social plugin in a Facebook application (response code : 206)

I'm using the Comment social plugin in a facebook application using the code below <div class="fb-comments" data-href="<?php echo $fbconfig['appBaseUrl']; ?>" data-num-posts="20" ...
0
votes
1answer
1k views

OAuthException 3502 even when posting correct object type to facebook graph

I've read several posts where people specify the wrong og:type or og:url in their object instances, and that produces this error. This is a different situation. I have one app which works ...
0
votes
0answers
894 views

Unknown path components using PHP to post

I adapted the Social Cafe PHP to post news as read everytime a user access to an article. Everytime I access the page, it presents this error: Unknown path components: /mv-news:read The code is ...
0
votes
1answer
62 views

Basic info such as first_name, etc - is marked as requiring no access token, but PHP SDK still can't get it

This question may sound weird, but it's first time I do it and cannot find the answer to this. So why if some fields are marked as requiring no access token, I still get "An active access token must ...
1
vote
1answer
597 views

Can I use app with real users or “Can only call this method on valid test users for your app”

I am developing desktop app and it should post some info to user's facebook wall. Everything is ok: authorization, token, etc But after I send POST request, I get error: "Can only call this method on ...
0
votes
1answer
345 views

Blackberry Facebook NoClassDefFoundError

I'm probably doing something dumb but my attempts to access the BB Facebook fucntionality are failing. Here's the code (taken straght from the FB sample code provided): String NEXT_URL = ...
2
votes
0answers
234 views

No “Code” received in FacebookApiException in PHP SDK

When calling the /page_id/tabs api, with an out of bounds tab position, a FacebookApiExpection is thrown. The problem is that the code returned is '0', and the type is 'OAuthException'. The question ...
5
votes
2answers
2k views

Facebook PHP SDK 3.0 - OAuthException: An active access token must be used to query information about the current user

I can't seem to fix this problem! Even after directing the user to getLoginUrl(), I can't seem to get the user authorized. I've tested this in two windows: Chrome's Incognito (private) browsing, and ...
3
votes
1answer
8k views

Fb Like button + Permission denied for <http://www.facebook.com> to get property Proxy.InstallTrigger

At this point I'm nearly to take my hair off, actually I'm working with an rudimentary way to "vote" content in a website with the fb-like button and a copy into the website database, so, I suscribed ...
10
votes
1answer
3k views

CurlException: 28: connect() timed out?

Today I was trying to make application on Facebook using PHPSDK and I saw ocassionaly displayed exception from library saying CurlException: 28: connect() timed out! So, to check if it's my code bug ...
2
votes
0answers
536 views

Uncaught OAuthException: thrown in posting scores

I'm trying to post a test account user's score from a test facebook application using the graph "/me/scores" with an acquired app token. However, in trying to do so I get Uncaught OAuthException: ...
5
votes
1answer
5k views

java.net.UnknownHostException: graph.facebook.com

I'm getting a UnknownHostException when trying to post a photo to the user wall. Here is my code: byte[] data = null; Bitmap bi = BitmapFactory.decodeResource(getResources(), aDrawableId); ...
8
votes
2answers
5k views

How to process WebResponse when .NET throws WebException ((400) Bad Request)?

I'm using Facebook Graph Api and trying to get user data. I'm sending user access token and in case this token is expired or invalid Facebook returns status code 400 and this response: { "error": ...
1
vote
0answers
348 views

Error:Object reference not set to an instance of an object ,while parsing facebook JSON in asp.net

I am using/reusing json.net to get facebook likes of a user and his/her friend's like. I am having this error : Object reference not set to an instance of an object In the following code, I have ...
0
votes
1answer
5k views

Help| Exception: 200: The user hasn't authorized the application to perform this action

I have test my app before, and It worked I have managed to post to my page wall. But now after I have changed the code and removed the permissions, and logged in again it didn't work and trowed this ...
2
votes
2answers
927 views

Facebook-C#-sdk: v5 Security exception

I'm still new with facebook C# sdk (ASP.net) I'm using Facebook C# SDK v5 sample "CSASPNETFacebookApp" everything well when in the development machine, but when I upload it on my Godaddy Shared ...
3
votes
4answers
2k views

How to catch FacebookApiExceptions when using FacebookApp.ApiAsync in WP7?

I'm currently using Facebook C# SDK v4.2.1 and I'm trying to post something onto the user wall. It worked fine until I got an FacebookOAuthException (OAuthException) Error validating access token. ...
0
votes
1answer
118 views

Silverlight + Facebook DTK API -> SecurityException ONLY on Mac and Firefox

I have a SilverLight application which throws a security exception when running on FireFox for Macs. The exact same application works fine on Windows (Internet Explorer, FireFox, Chrome, Opera) and on ...