I have an old application that uses a .net api written quite a while ago. To authenticate a user a call is made to here: https://www.facebook.com/login.php?login_attempt=1&popup=1&fbconnect=1&display=popup&next=http%3A%2F%2Fwww.facebook.com%2Fconnect%2Flogin_success.html&req_perms=offline_access&legacy_return=1
The user fills in there password and my application checks for the following:-
e.Url.PathAndQuery.Contains("/connect/login_success.html?session=")
however this is no longer the url returned. The URL is now this:- https://www.facebook.com/connect/login_success.html?auth_token=3fc9a0a14314357aa...
The original url I had returned the following in the url:-
- Session
- Uid
- Expires
- Secret
- Sig
But the new url only gives me an Auth token. I'm really struggling to find any info about whats changed other than Facebook is trying to move over to oAuth.
Is there a simple way I can get me old app to work?
Thanks
Ross