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.

Multithreading is how work performed by a computer can be divided into multiple concurrent streams of execution (generally referred to as threads).

learn more… | top users | synonyms (8)

0
votes
0answers
16 views

Why am I getting null pointer in the getGraphObject when trying to post a image to facebook from android?

I am trying to post a photo from an url to the facebook. So, I have a method that converts the image located in the provided url to a bitmap, after that I want to publish the image to the facebook ...
1
vote
0answers
22 views

Issues encapsulating FacebookSDK AppDelegate calls into an static library

I am developing a library for different purposes and I am having an issue with the FacebookSDK that I am not able to understand. I have encapsulated all the Facebook SSO Login process within my ...
0
votes
0answers
55 views

rails using fb_graph gem to post graph actions, receive InvalidRequest - OAuthException :: (#3503)

i am trying to use fb_graph gem to publish a user action to facebook this is my code: me = record.user.facebook # Publish an activity action = me.og_action!( ...
0
votes
0answers
31 views

FBSession not working thread dispatch_queue_create but working fine without it

I am trying to fetch Facebook user info. Below is snippet used for opening FBSession [FBSession openActiveSessionWithReadPermissions:nil allowLoginUI:YES ...
1
vote
1answer
45 views

cant connect to facebook with a network thread

I need to connect to facebook so I use a Tread when using the network. but I have a problem: Thread t = new Thread(new Runnable() { @Override public void run() { ...
0
votes
0answers
114 views

Emulate facebook style message UI

I would like to emulate the facebook UI for their messaging/inbox/sent. I am referring to the messages users send each other and not posts. At the moment I have separate inbox and sent box pages. I ...
0
votes
0answers
214 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, ...
2
votes
1answer
2k views

Async FB request with block in separated thread issue

I'm working with the IOS Facebook SDK 3, and I'm trying to use it with the more efficient approach. So I would like to manage some requests in separate threads. For example this request (WORKS ...
0
votes
1answer
5k views

Can't create handler inside thread that has not called Looper.prepare() - AsyncTask inside a dialog

In my activity there is a toggle button. I want every time you change the toggle button to unchecked a dialog box appear and when you press on Yes a message is published on the facebook's wall. I ...
1
vote
1answer
421 views

Android facebook wait for AsyncFacebookRunner to finish?

In my application, I have a ProgressDialog showing while the app do something: mProgressDialog = ProgressDialog.show( ((FriendListActivity) ctx).getParent(), "Please wait...", ...
1
vote
1answer
598 views

Android App Crashes after Sharing using Facebook Dialogs

I'm trying to integrate Facebook SDK into an Android project. I'm posting a wall message in the Facebook Dialog, when I hit "Share", the message gets posted successfully on my Facebook wall. But my ...
1
vote
2answers
163 views

No interaction with Facebook iOS SDK dialog after switching to thread?

I'm playing around a little bit with the Facebook iOS SDK. I have a TabBar App (with MainWindow.xib) and I successfully integrated the Facebook SDK. The problem is that non of the Facebook pop up ...
0
votes
2answers
590 views

facebook desktop app C#

I am trying to build a desktop app to use facebook api and get data from friends. Anyways I am stuck in the log in stage. I have used some advice and made the log in to facebook with WebBrowser. It ...
0
votes
1answer
703 views

Getting Messages from Inbox

I have a question about the Graph API. I use Javascript for the API and make a little test website ,where you can log in ,look for new messages and write a new status. My problem is that I can't get ...
2
votes
2answers
732 views

Use threading to wait for another class's method to execute, or is there a simpler way?

I've never touched threads before, and by the looks of it I might have to delve into them a little, but I was wondering if there was a simpler solution to the problem below. I'm basically displaying ...
2
votes
1answer
1k views

C#: Anything wrong with setting HttpContext.Current in a parallel thread?

I'm using a library that relies on HttpContext.Current. The library is Facebook C# SDK, but my question should apply in other scenarios as well. I'd like to use this library from inside of a ...
4
votes
1answer
786 views

Facebook request thread problem

Alright I am kind of new to threads so I have this question. I am trying to get information of friends from Facebook, and I do not want to do that on the main thread. but for some reason when the ...
0
votes
1answer
242 views

Is it possible to have comments with individual replies using Facebook API?

I'd like to have comments with individual replies, like a tree. Pretty much what you get with DISQUS but with Facebook's API. Is that possible? Any workaround? Thanks.
0
votes
1answer
228 views

Misuse of synchronized?

I'm trying to synchronize two blocks of code for an Android app. The first block uses an AsyncFacebookRunner to make a request for a user's interests, if any. If interests were found, a member ...
19
votes
2answers
39k views

The calling thread must be STA, because many UI components require this

I am using: http://www.codeproject.com/KB/IP/Facebook_API.aspx I am trying to call the xaml which is created using WPF. But it gives me an error: The calling thread must be STA, because many UI ...