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.

Bulding via phonegap.build service simple example(https://github.com/phonegap-build/FacebookConnect/tree/master/example/Simple) from this repo + my config.xml (https://gist.github.com/zulman/5070388)

After tap on login button message informs me about "com.facebook.sdk error 2"

I check all info on github's main page about this error, check stackoverflow entries.

  • My bundle id is the same on facebook dev page and in config.
  • My sandbox mode disabled on facebook dev page.
  • My app ids are equal on js, config and facebook dev page.

How i can get extended error info or way to fix it without using manual building on xcode? Thanks.

share|improve this question
Its strange but after changing iOS key on build.phonegap.com and changing facebook app error disappeared. – zulman Mar 3 at 16:05
can you explain what you mean by changing the iOS key? I don't use phonegap build - I build cordova locally. Also, changing facebook APP, do you mean you created a new APP? Thanks. – Austin Mar 28 at 16:49

1 Answer

I had exactly the same problem. Check the permissions you are requesting. Apparently with the newest version of SDK you cannot request write and read permissions during the same request.

For me, requesting "offline_access" was an issue. After removing that one, the error disappeared. Try requesting only the basic permissions (like "email,user_about_me") and see what happens.

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.