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 NSURLConnection is the Apple Foundation Framework class that provides support to perform the loading of a URL request.

learn more… | top users | synonyms

0
votes
0answers
111 views

Implementing Facebook Subscription API with Objective-C (Mac)

I am trying to subscribe to Facebook's subscription API with a Mac app to be notified whenever a new post occurs. I am having some trouble implementing this (I have used PhFacebook, but it does not ...
0
votes
0answers
106 views

Facebook graph api blocked by ASIHttpRequest in IOS?

I'm currently develop a photo app in ios 4, basically user can add location to the photo they took. when user took a pic, I use ASI Framework to upload the photo in the background, here's my code ...
1
vote
1answer
1k views

How to cancel a video upload in progress using the Facebook iOS SDK?

I'm using the Facebook iOS SDK to post videos from my app to the user's facebook. I'm trying to allow the user to cancel the upload after the upload has started. These are the methods that starts ...
1
vote
1answer
868 views

How to upload big image asynchronously with NSURLConnection?

Now, I'm trying to upload photo image to Facebook by using FBConnect. I succeeded in uploading image from main thread but, it blocks user interface quite long time. So, I tried to use dispatch_async ...