Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

I want to use facebook api in my future iphone project..

I have got App id...App Secret...and api key from the facebook..

Now I want to use it in my FBConnect..

Where should I use this details in the fbConnect?

share|improve this question

1 Answer

Use the appID to create the facebook object

_facebook = [[Facebook alloc] initWithAppId:kAppId];

decide what permissions you want to get

_permissions = [[NSArray arrayWithObjects: @"read_stream", @"offline_access",nil] retain];

and then login using

[_facebook authorize:_permissions delegate:self];

also dont forget to add the URL fb[appID] to the URL Types key in the info.plist file.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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