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 working on a game website. At the end of the game , the user can publish his score on Facebook via the method stream.publish

The problem is that I cannot refresh the page because the game as to remains in the same state.. so I m opening the URL obtained by $facebook->getLoginUrl( params) in a new window with window open

window.open('https://www.facebook.com/dialog/oauth?client_id=xxxxxx

If the user has already authorized the app , everything works fine, the url returns to my redirect_uri, and I closing the popup with self.close and calling the PublishStream method with window.opener.PublishStream

But If the app has not been authorized yet, I have a bug. Facebook says the my session is not valid anymore

API Error Code: 102 API Error Description: Session key invalid or no longer valid Error Message: Iframe dialogs must be called with a session key

I know this is a very common error, so I have the idea to pass the new accessToken I got to my PublishStream function via window.opener .. but the problems remains the same

You can check here the problem : http://www.haha-haha.fr/

Any suggestions?

share|improve this question

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.