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 have a mobile web application that uses the Javascript SDK to connect to facebook and use the Graph API to retrieve user information. When testing on an iPhone, the site works fine from Safari, but if a user adds a link to the website in a status post and the site is opened within the Facebook iPhone application, the login javascript is not being called.

I'm currently using FB.UI method:'permissions.request' but I have tried calling other fb.ui dialogs etc and nothing is loaded either.

Is there a way to get these to work from within the Facebook iPhone app? Is there a way to force the links to open in Safari instead of the Facebook application?

share|improve this question

2 Answers

You should make sure to set up for authenticated referrals so that if the user clicks on a link to you mobile web app from the Facebook iPhone app, that they will be authenticated before landing on your page. For instructions on how to do this check out https://developers.facebook.com/docs/guides/mobile/web/#login

To answer your last question you cannot make the links open up in Safari from inside the Facebook app.

share|improve this answer
Thanks, the new authentication options are proving useful and future applications will make use of them. In the case for this application, the user was supposed to be able to view the web app prior to 'using' it, so forcing authentication wouldn't work. – beverage Nov 4 '11 at 1:27
Authenticated referrals are nonfunctional in the iOS Facebook app version 4.1 and only correctly redirect on the first login to the app everywhere else. As of right now, authenticated referrals are not usable. – Daniel Coffman Dec 29 '11 at 21:10
up vote 1 down vote accepted

I got around this issue by using a redirect URL for authentication on the button rather than trying to call the JS method to open a dialog. It required a little extra coding to handle the return but ultimately got around the issue.

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.