ParallelLogic
Member
- Messages
- 35
- Reaction score
- 0
- Points
- 6
My project: accessing this page (and pages by other users)
. At the bottom you will notice a "Next Page" button that will list the next set of five users to give this user a "badge". I wish to compile a list of all users that have given and received a badge from this user. To do that, it is my believef (and I may be mistaken), that it would be faster to send GET packets and get the data that way rather than individually loading the entire page url?offset=5 ... url?offset=10 ... etc.
I'm using Wireshark to view the network activity that happens when I press the "Next Page" button. I see a GET packet is sent and some data is sent back to me (and the last bit of this return packet has the data I'm looking for). My problem is I don't know how to send the initial GET packet with Java. The examples I've come across have to do with adding parameters to the GET packet sent to established websites (like search engines) as opposed to appending them to the URL - not for dealing with replicating an existing packet exchange.
I wish to know how to make Java perfectly replicate the packet that is seen in Wireshark - or make it replicate it close enough that I can get the data I'm after.
Thank you very much
HTML:
http://spyed.deviantart.com/badges/
I'm using Wireshark to view the network activity that happens when I press the "Next Page" button. I see a GET packet is sent and some data is sent back to me (and the last bit of this return packet has the data I'm looking for). My problem is I don't know how to send the initial GET packet with Java. The examples I've come across have to do with adding parameters to the GET packet sent to established websites (like search engines) as opposed to appending them to the URL - not for dealing with replicating an existing packet exchange.
I wish to know how to make Java perfectly replicate the packet that is seen in Wireshark - or make it replicate it close enough that I can get the data I'm after.
Thank you very much