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 feel like an idiot right now as I tried to run the DemoApp which is coming with the default facebook sdk for the iphone.

I registered a new application in facebook, took he application id and added it to he DemoAppViewConroller.m like this:

static NSString* kAppId = @"175223790000000";

Then I changed the following in the DemoApp-Info.plist:

URL types - Item 0 - URL Schemes - Item 0 = fb[175223790000000]

Now the app crashes everytime it tries to start. There is no warning thrown.

Does anyone know what I do wrong?

Thx and cheers doonot

share|improve this question

1 Answer

up vote 2 down vote accepted

Please remove the square brackets from URL scheme:

URL types - Item 0 - URL Schemes - Item 0 = fb175223790000000

Cheers.

share|improve this answer
thanks buddy!!! – doonot Mar 2 '11 at 6:20

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.