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.

A crash is the result of an unrecoverable error that causes the program to stop completely. During software development, crashes can be avoided by implementing proper error and exception handling.

learn more… | top users | synonyms (1)

0
votes
0answers
16 views

Facebook SDK Freeze My Server

I'm first time fb sdk user, I am creating my first app the idea is to iterate with for loop throught and array of 5 groups in users groups list, in this list I get the gid and later check the ...
0
votes
0answers
48 views

Access options are not permitted for this account type. The options argument must be nil.;

I'm looking at my crash logs and i could see this crash: "Access options are not permitted for this account type. The options argument must be nil.;" it's my first time to encounter such crash so i ...
0
votes
2answers
57 views

Signed Android app has crash when get user info Facebook SDK

I just created a app, that using facebook sdk 3.0 to get user info . This's the code: private void getMe() { Session session = Session.getActiveSession(); CanBanNhanhAppActivity._fbtoken = ...
0
votes
2answers
81 views

ios app crashes with no error and no crash report

I am currently importing all the facebook birthdays and inserting them in core data,then i sort them according to the latest bday's(fetching and sorting). When i use facebook to sync and get all the ...
7
votes
1answer
269 views

Official Facebook iOS app always crashes when calling FB.login() from web app

I've managed to write a simple fiddle that crashes the native iOS facebook app. If you paste this link into your timeline http://jsfiddle.net/Gc58e/ (it is just a simple button with a FB.login ...
1
vote
2answers
134 views

Facebook iOS SDK 3.5 login issue

I've already integrated facebook login in an app with the previous sdk version. After upgrading to version 3.5, it isn't working. When I want to login, the app crashes, with several [FBSession ...
0
votes
1answer
265 views

facebook android sdk 3.0 login another activity crash

I use android sdk 3.0 login code Session in the MainActivity can run .. but I move to new Activtiy FB.JAVA.can't run .click button crash.. plase how to fix: MAinActivity.JAVA code public void ...
0
votes
0answers
18 views

Crash on [FBGraphObject dealloc]

I've been facing this problem and I have really no idea how to fix it. I just got it randomly. These are my codes: [FBRequestConnection startWithGraphPath:[ NSString ...
1
vote
1answer
65 views

Conflicting errors when login to IOS app using facebook connect

After installing facebook login, we have 2 developers using their own devices (Both using IOS 6.1.2) with conflicting differences. Developer 1: Clicks facebook login button, and is redirected to URL ...
0
votes
1answer
194 views

Cannot reproduce app crash on checking whether logged into service on device

I have an app that, according to crash logs, is crashing on startup while checking if the user is logged into Facebook on the device. The problem is that I cannot reproduce this crash, and it happens ...
1
vote
1answer
225 views

Facebook login on iOS crashes my app

I'm trying to integrate the Facebook SDK into my iOS app. To log in I'm calling: return [FBSession openActiveSessionWithReadPermissions:nil allowLoginUI:YES ...
2
votes
1answer
546 views

iPhone app using Facebook SDK crashes with “has active assertions beyond permitted time” error

I have an iPhone (iOS native) app that uses the current Facebook iOS SDK. When attempting to connect my app via the Single-Sign-On process, I frequently get a crash stating my app "has active ...
0
votes
0answers
47 views

Facebook website integration randomly stops

I have integrated facebook into my webpage to manage logins. The problem that I'm currently experiencing is that on the first page load if I am inactive for a while, it usually seems to just crash. ...
0
votes
0answers
274 views

Crash in WebCore when opening a Facebook Dialog

I am using Facebook SDK to open a dialog that user can use to post a comment on another user's Facebook timeline. Sometimes the application crashes at the exact point of opening the Facebook dialog. ...
0
votes
1answer
946 views

Crash on iOS when system purges memory and closes a UIViewController

My application is crashing when one of the views is purged from memory because of low-memory condition. At least this is what I understand from the crashlog. It happens on numerous screens but only ...
3
votes
1answer
1k views

iOS Facebook SDK crashing in iOS 4.1 & 4.2

Is it me or anyone else is crashing on those iOS versions with the Facebook SDK.It happens when you're about to share then it gives you a bad access and the debugger says "decodeGIFFrame" ... After a ...
2
votes
1answer
10k views

Login with facebook android sdk app crash API 4

Login with Facebook android SDK crash in a second after "publish to wall" dialog appeared. I found descriptions of probably the some issue here: ...
3
votes
1answer
1k views

iPhone app crashes after first Facebook Connect authorization / login

I've been looking for an answer everywhere but couldn't find one. The problem is: I have an iPhone application (on the AppStore) which uses Facebook iPhone SDK. I'm using the SDK for authorizing the ...
2
votes
2answers
593 views

Omniauth: Facebook callback kills dev server

I'm following the code here: http://railscasts.com/episodes/241-simple-omniauth?autoplay=true I'm on ruby 1.9.2p180 (2011-02-18 revision 30909) [x86_64-darwin10.7.0] and Rails 3.0.7 Basically, I ...