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 know there have been similar questions asked but none of them get addressed to the degree.

So basically I'm testing out the example index.html found in the plugin package but when click on "login" which redirects to safari in simulator (due to lack of fb app) and fb app in my iphone, it open up the diag to "allow" my app but after that it never returns to my app..

I do have facebook id to replace the one in the index.html and the setup of plugin works: it compiles and runs.

When I go back to my app myself to click on the button to populate my friends list, it says:

{"message", "An active token is required to query...}

Update: I just fixed the problem myself. It's actually due to my setup (it compiles but it won't work):

In YourApp-info.plist, the URL should be

fb#appID

But in example index.html, it should be

#appID

(without the fb prefix)!

share|improve this question

1 Answer

up vote 0 down vote accepted

Hint Im not sure about. what is the id you entered for fb[APP_ID] have you entered fbfb (twice)

<key>CFBundleURLTypes</key>
<array>
<dict>
    <key>CFBundleURLName</key>
    <string>[SCHEME_ID]</string>
    <key>CFBundleURLSchemes</key>
    <array>
        <string>fb[APP_ID]</string>
    </array>
</dict>
</array>
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.