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.

im implementing my own php facebook sdk. it works fine, but i'm still fighting with the oauth flow. what i have now: check if user has allowed my application and permissions if not - show the dialog to login and accept permissions. this is all ok, but after clicking allow the browser is redirected to https://mydomain.com/?code=CODe... i can then get the access token and everything but i would like that the facebook iframe stays there.

share|improve this question
Dupe of stackoverflow.com/questions/7473304/… – Yuliy Sep 27 '11 at 17:04

1 Answer

up vote 1 down vote accepted

You're specifying the URL yourself as part of the auth process - if you want to send them to your app's canvas, use that as the URL.

If you're using the PHP SDK you're probably using the result of 'getLoginUrl()' - check how that works and choose another URL instead, bearing in mind the URL must be 'owned' by your app or it can't be used

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.