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'm working with the API using HTTMultiParty and I'm having trouble capturing the outgoing HTTP requests when I make POSTs. I don't see them at all in wireshark. I am capturing on the wireless adapter (I have no other internet connection) and filtering on

http.host contains "docusign"

but I can't see anything come up. Even with just an HTTP filter, I see nothing new captured while I see a request and response. Why is wireshark unable to view the traffic from my rails app? Note: I can see the request made by my browser to the rails app.

share|improve this question
Ah yes, they are made over https. I thought I'd at least see the traffic even though it was over SSL. I thought i remember seeing facebook traffic though. I didn't think of trying tcp.dest, but I'll try that now. – csmysterious178 May 21 '12 at 5:28

1 Answer

Since it's https traffic, assuming you know the IP address of the server you're talking to, use the filter ip.addr == x.x.x.x and you should see TLS traffic leaving leaving your client.

I presume in the above comments that you mean "ip.dst" because there is no such thing as "tcp.dest" as far as I'm aware.

Slightly old but here's a complete list of filters.

share|improve this answer
Thanks for catching my mistake wrt ip.dst! :) – sarnold May 21 '12 at 22:42
No worries, easily done! – Mark Hillick May 22 '12 at 9:45

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.