I've developed a Facebook application using the Facebook C# SDK. Interestingly, whenever the user clicks on a link in Internet Explorer, the whole page reloads - including the friends list on the right and the chat list. If one does the same with Chrome, this doesn't happen - only the canvas page gets reloaded, but the lists on the right remain untouched.
I traced the problem using the Fiddler Web Debugger and found the following. Assume my application is called my_app, and it is deployed on Windows Azure (cloudapp.net). Thus, a click on a link (to the same page, for instance) in IE results in the following calls:
- my_app.cloudapp.net/Default.aspx
- www.facebook.com/dialog/oauth/...
- www.facebook.com/dialog/permissions/...
- cloudapp/facebookredirect.axd?state=...
- apps.facebook.com/my_app/...
- my_app.cloudapp.net/Default.aspx
The backtrace from Chrome is completely different:
- my_app.cloudapp.net/Default.aspx
- www.facebook.com/extern/login_status.php?...
For some reason the authorization process from Chrome is different. I implement the authorization as it is done in the sample files from the Facebook C# SDK - using CanvasAuthorizer.Authorize(). Any ideas why this problem occurs and do you have any recommendations on how to get the Chrome behavior on IE?
Many Thanks, Yordan