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.

When I open a FBSession (FB SDK 3.0), I get this error:

FBSession: No AppID provided; either pass an AppID to init, or add a string
valued key with the appropriate id named FacebookAppID to the bundle *.plist

I know I can add a value for FacebookAppID in the .plist, but what method should I use to init the FBSession with an AppId? I have tried using [FBSession setDefaultAppID] but that doesn't seem to do it.

share|improve this question

2 Answers

up vote 2 down vote accepted

Generally you have to call initWithAppId: from the Facebook SDK.

- (id)initWithAppId:(NSString *)app_id
    andDelegate:(id<FBSessionDelegate>)delegate;

See here: http://developers.facebook.com/docs/reference/iossdk/authentication/

share|improve this answer
Thanks - I was trying to call it statically, derp – HoratioCain Jul 13 '12 at 16:25

The new version of SDK doesn't accept

- (id)initWithAppId:(NSString *)app_id
    andDelegate:(id<FBSessionDelegate>)delegate;

so Create a FacebookAppID in the info.plist file and give the app id as string input.

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.