I am using the Facebook SDK to authenticate users, although I cannot use Session Variables via Facebook due to 3rd party cookie issue, ie Session State does not work in an iFrame.
To get around this I redirect between pages using POST's where I create a form and post the accessToken which I use on the server to authenticate.
When I redirect I have the accessToken in the ViewModel and have this written out into javascript, ie doing a viewSource will show the accessToken. Is this the incorrect way of doing it?
SHould I rather get a new accessToken via FB.getLoginStatus / FB.Event.subscribe('auth.authResponseChange', function (response) [I currentle use a combination of both] and post that to the views (which I then re authenticate server side)?