With the release of the new Javascript SDK and OAuth 2.0, I was wondering if it's possible to update the SignedRequest (and authtoken) without redirecting the user, so I used the following approach. Basically, this is a keep-alive approach for my app to get around the 2 hour expiration window of tokens.
My app consists of:
- A flash front end + Javascript
- Web Services (asmx) using Facebook C# SDK
To update the signed request, I do the following:
- Every 20 seconds I call FB.getLoginStatus using getTimeout()
- This returns a new signedRequest
I update my ajaxSetup to include this parameter on every call to my server.
var signedRequest; function updateSignedRequest(_signedRequest) { signedRequest = _signedRequest; $.ajaxSetup({ data: { "signed_request": signedRequest} }); } (function ensureAuth() { setTimeout(function () { checkAuth(); ensureAuth(); }, 20000); })(); function checkAuth() { FB.getLoginStatus(handleResCallback, true); } function handleResCallback(res) { if (!res.authResponse) { handleNotConnected(); } else { signedRequest = res.authResponse.signedRequest; } }
A couple questions:
I believe the Facebook C# SDK looks at the signed_request parameter on each new request, not the cookie. Will this always be the case?
Also, any other holes you can see in this approach?