Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have just started to look at the Facebook API, and to be honest I do not manage to read from the documentation on how to use it with iOS, so what I am looking for is preferably a book that teach me the basics (and beyond). I found some books at Amazon, but they are old (not using the new API) and they are written for PHP.

share|improve this question
There are many tutorial around if you google it. – Praveen-K Aug 3 '11 at 20:12
Control-V: Thank you, useful:) – LuckyLuke Aug 3 '11 at 20:37

closed as not constructive by Robert Harvey Aug 24 '11 at 23:36

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

up vote 2 down vote accepted

The tutorials for the Facebook iOS SDK are often terrible at best and most are out of date, as you have already discovered. The best way to learn is to find someone who has already had experience with the SDK. I've learned mostly through trial and error (mostly through error).

The next best thing to an experienced developer is the tutorial written by Facebook. Sadly, it's very difficult to find. You can find it here. It doesn't go into great depth, but it's a good start. It shows how to make a Facebook app, log in, and make some simple calls. The hardest part is understanding the Graph API. Most of your calls will look something like this:

NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                message, @"message",
                                nil];

[[self facebook] requestWithGraphPath:@"me/feed" 
                            andParams:params 
                        andHttpMethod:@"POST" 
                          andDelegate:delegate];

If you are doing a simple app, you probably only need to call me/feed and maybe me/photos and me/videos. You can find the required and optional parameters in the Graph API. The parameters are always passed to the Facebook iOS SDK through an NSMutableDictionary as I showed above. I will warn you though, Facebook does not give good error messages back if any. Trying to work with the Facebook API is a constant battle.

A couple last words of advice. First, when you request permissions from Facebook, be sure to spell them right. Second, the Facebook iOS SDK is not threadsafe, so be sure to run all calls on the main thread. These two mistakes gave me many hours of head scratching.

Update:

For further help, you should check out the new facebook.stackoverflow for questions/answers specific to Facebook.

share|improve this answer
rbrown: Thank you, great answer! So I just use the path without the leading graph.facebook.com part? – LuckyLuke Aug 4 '11 at 8:10
That's exactly right. Making a call to the graph api isn't too hard. However, debugging is a headache. – rbrown Aug 4 '11 at 18:33

Not the answer you're looking for? Browse other questions tagged or ask your own question.