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.

Workers provide a simple means for web content to run scripts in background threads. Once created, a worker can send messages to the spawning task by posting messages to an event handler specified by the creator.

learn more… | top users | synonyms (1)

2
votes
0answers
49 views

using the facebook javascript sdk with a web worker

I have a Facebook application that needs to query a lot of data from the Graph API. I can currently pull all of the data using the Facebook javascript-sdk, however the user has to wait for facebook to ...
1
vote
1answer
113 views

How to create a new function on window or self(which has assigned interface Window by lib.d.ts)?

obviously I am trying to get facebooks async init working. Doing it, I need to create a function on object window called "fbAsyncInit". I am having simillar problem, when writing web workers, because ...
0
votes
1answer
59 views

Is it possible to use the facebook sdk Inside webworkers? [closed]

I want to build a script that builds up the data needed for the application in the background. I intend to use a web-worker but a lot of the activity use the graph API with JS SDK as it's source and ...