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've been googling a lot, but seems that no-one has had this strange problem. I'm using Php sdk to perform facebook authentication, we initialize our Facebook-app:

<?php     $fb = new Facebook(array('appId' => 'our-app-id', 'secret' => 'our-secret'));     ?>

and print the link with the href value obtained by:

<?php $lu = $fb->getLoginUrl(array('redirect_uri' => 'www.ourdomain/fblogin')); ?>

with 'redirect-uri' pointing to a page that checks request parameters, but does not perform any redirect, according to documentation. Authentication works well in every browser, except Opera (i have latest version 11.6).

The user can allow the application, but when he clicks 'Login' redirecting doesn't work. It performs authentication, because when i go to Facebook homepage I am logged in, but is not able to perform redirect to my url I've tried to disable the opera browser.js to prevent it modifying Facebook scripts, but still doesn't work. Any suggestion? Thanks in advance

share|improve this question
Same Problem. Seems if the redirect succeeded, but the result page was cached (althoug my url changed!) – Stefan Wienströer May 18 '12 at 7:25
here's the answer: my.opera.com/chooseopera/blog/show.dml/9014631 – Artur Oct 13 '12 at 7:46

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.