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've come across something that's puzzled me for the past 3 hours regarding Facebook's login procedure.

I visited http://m.facebook.com (with UA Spoofer installed and set to Nokia Lumia User-Agent) and proceeded to log-in whilst monitoring the headers. I purposely entered the wrong password for an account I have.

When pressing log-in it sends a POST request to this URL: https://m.facebook.com/login.php?refsrc=http%3A%2F%2Fwww.facebook.com%2F&refid=8 the status code returns a 200 response code.

Then instantly afterwards it does a GET request to this URL: http://m.facebook.com/login.php?refsrc=http%3A%2F%2Fwww.facebook.com%2F&refid=8&e=1348022&email=frankthebutcher%40hotmail.com&signup_layout=layout%7Cbottom_clean%7C%7Cwider_form%7C%7Cprmnt_btn%7Cspecial%7C%7Cst%7Ccreate%7C%7Cheader_button%7C%7Chdbtn_color%7Cgreen%7C%7CFeb1&li=jFMuUdDWbmFhq8b-zAjEOHnE&_rdr

Which is the URL that says the password was incorrect.

But, where is that redirect coming from? There is nothing in the response headers from the first POST request, and JavaScript isn't enabled.

Try it on Chrome. Would love to know how it's doing that so I can adjust the mobile app I'm developing accordingly.

Solved: In my mobile app I was sending the POST request to the right URL, but the URL string I used was encoded which was causing the problem.

share|improve this question
Probably a Location: header being sent back with the first request (which your browser then runs with after the response has been processed). – Brad Christie Feb 27 at 18:59
I've been through the headers with a fine tooth comb, there's nothing in there that I can see. – James Jeffery Feb 27 at 19:00
Yeah, a lot of mobile applications rely on the Global Positioning System so it can adjust which server to login to. – Greg Feb 27 at 19:02
1  
I just tried it, and did what I thought: send back a Location: http://m.facebook.com/login.php?refsrc=... header back. – Brad Christie Feb 27 at 19:02
@BradChristie ah, didn't notice you edited your comment. Interesting, I will certainly take a look at that. – James Jeffery Feb 27 at 19:02
show 1 more comment

1 Answer

up vote 6 down vote accepted

The first POST request is sending back a Location header which tells the browser to step-ahead from this request and proceed with the next. The second request is just the browser then using that new Location supplied and moving forward.

here's what you see from the first POST response:

Screenshot of response eheader

However, from what I can see it's a 302 (redirection: found) response, not a 200 OK. Something tells me that you're judging the response headers on the final request, not the intermediate redirect/handoff.

share|improve this answer
Out of interest does the AllowAutoRedirect property of HttpWebRequest (C#) follow the Location header? – James Jeffery Feb 27 at 19:05
@JamesJeffery: Since it's a 3xx address, it will follow (unless the property is set to false, or the hop count has been exceeded) – Brad Christie Feb 27 at 19:09
I don't even see a location header when I monitor the headers. Are you using an older UA so it loads the WAP page and not the regular Facebook mobile page? – James Jeffery Feb 27 at 19:10
@JamesJeffery: Do you have it set to "preserve logs upon navigation"? IIRC, chrome clears the log between page views, so you'll only ever see the last request (which, in this case, is the redirected result and any assets on the page) – Brad Christie Feb 27 at 19:13
I've got "Preserve Log Upon Navigation" set. – James Jeffery Feb 27 at 19:14
show 2 more comments

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.