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 been trying to find a Python code that would log in to my Yahoo account from "Google App Engine". One supporter on "StackOverflow" gave me this three-step plan:

  1. Simulate normal login and save login page that you get;
  2. Save POST&GET headers with "Wireshark";
  3. Compare login page with those headers and see what fields you need to include with your request;

The problem here is that I have never used "Wireshark" before. Plus, I don't know what the POST&GET headers are. Can You, please, explain it to me (preferably with some example). Thank You.

share|improve this question
I don't know if you'll need Wireshark. You could start with Firefox and the "Tamper Data" add-on. – uncle brad Apr 9 '10 at 3:26
@ uncle brad: Hello, uncle brad, thank You for this advice. is "Tamper Data" a part of firebug? I already have firebug added to my "Firefox". – brilliant Apr 9 '10 at 3:31

4 Answers

You don't need Wireshark, you need Firebug.

You should read up on Firebug on their wiki page. Take note that you're looking for parameters in GET or POST requests as such.

circles

share|improve this answer
Firebug does headers now? Is there anything it doesn't do? – uncle brad Apr 9 '10 at 3:29
1  
Yes. It can't scratch my back. I'm filing a bug report. – DVK Apr 9 '10 at 3:31
@ Josh K: Hello, Josh K !!!! Well, I do have the firebug already, but I still don't know how to do it. At first I was trying to use inspect button there (blue arrow-cursor on a whit-blue rectangle), but then I was advised to use the Net panel (the very last one on the bar, follows "DOM"), but in both cases I failed to find those headers by myself. Can You, please, tell me how I can do it there in the Firebug. Thank You. – brilliant Apr 9 '10 at 3:35
@brilliant: Editing my answer, stand by. – Josh K Apr 9 '10 at 3:41
@ Josh K: Josh, thank You for this image. So, "generate_204" and "search?hl=en&source+hp" are the headers there on Your image? – brilliant Apr 9 '10 at 4:02
show 3 more comments

Brief answer:

HTTP/1.1 has a few commands: GET, PUT, POST, DELETE, and a few others.

HTTP GET is used to retrieve a resource. ex GET http://www.demo.com/index.html

Wireshark is used to monitor network traffic. So, you can view all the HTTP commands that your machine is doing in real time.

In Wireshark find the specific POST command for your login page. This POST command has a lot of data in it including POST variables that are passed to the server. You can look at these variables and see what's going on to try and troubleshoot your situation.

I know that was very basic and short, but I think that was enough information to point you in the right direction.

http://www.wireshark.org/ http://wiki.wireshark.org/SampleCaptures http://en.wikipedia.org/wiki/POST_(HTTP)

Good luck!

share|improve this answer
WOW!!! Jonathan, thank You for this info. I am studying it at the moment. – brilliant Apr 9 '10 at 3:38

You should read up about HTTP-Requests in general first: wiki

Wireshark basically captures the entire data that runs through your network adapter - including the traffic from your browser. Now, you can see what exactly the browser sends to the webpage. If you have this information, you can go ahead and replicate the requests with the libraries Google provides.

share|improve this answer
I see, Femaref, thank You for telling me that. – brilliant Apr 9 '10 at 3:39

For monitoring header traffic in Firefox, I recommend LiveHTTPHeaders.

share|improve this answer
Hello, Danten, Thank You for this suggestion. I will firstly try my luck in Firebug, and if it doesn't go successfully, I will resort to LiveHTTPHeaders. – brilliant Apr 9 '10 at 3:40

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.