Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.