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.

While try to login using facebook Scrumptious , it showing the following error, Where should i want to the facebook id?

2013-02-16 14:23:21.283 roulocalapp[2378:c07] Application tried to push a nil view 
controller on target <UINavigationController: 0x945b180>.
2013-02-16 14:23:21.288 roulocalapp[2378:c07] *** Terminating app due to uncaught
exception 'com.facebook.sdk:InvalidOperationException', reason: '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'

enter image description here

share|improve this question
Did you add your AppID in *.plist ? – mstfbsnli Feb 16 at 9:03
yeah i did like this FacebookAppID: <fbid> – MohanRaj Feb 16 at 9:05

1 Answer

Follow these steps to fix your issue:

open your project in Xcode.

Find yourprojectname.plist file in your supported files.

Add an entry called 'FacebookAppID' and set its value as 'fb12786126112789' (use your app id preceded by 'fb')

Add a URL Types, make sure it is a dictionary, at Item 0, Add 'URL Schemes' and add a string in it which should be your app id - similar to this 'fb12786126112789' (make sure it should start with fb').

share|improve this answer
In your application plist file. – Reno Jones Feb 16 at 9:11
i did still it showing the same – MohanRaj Feb 16 at 9:14
Should i want to add anywhere else – MohanRaj Feb 16 at 9:14
1  
Remove the build, clean all targets and then run the application again. Also share the screenshot of your plist file with us. – Reno Jones Feb 16 at 9:15
question updated with screen shot – MohanRaj Feb 16 at 9:20
show 2 more comments

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.