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?
