we11er
Newbie
- Joined
- Jan 13, 2004
- Messages
- 1,035
- Reaction score
- 0
I've written a C# proggie to send post requests to the vote script. Only thing is it's giving me a "No such contest or poll" error response form the script. I think I may not have the write post data.
This is what I have as the script/post data:
(this may not be formatted nicely)
And yes, the post data is supposed to be in the 'GET' format. No special chars in there that I need to encode? Don't think so.
Anyone want to go through the form source and confirm the data is correct? We need to get this working - I don't want some Halo 2 fanboys coming in here and spamming us with "HAHAHA u da sux0rs!!111".
Thankyou for reading.
This is what I have as the script/post data:
Code:
const string url = @"http://contestsandpolls.gamespyid.com/poll.aspx";
const string data = @"publickey=dd3bb034-d6df-4d01-a6c2-a1e4a31ebdbb&exiturl=http://www.gamespy.com/articles/562/562511p1.html&closedurl=http://www.gamespy.com/articles/562/562511p1.html&q_1961=7422";
(this may not be formatted nicely)
And yes, the post data is supposed to be in the 'GET' format. No special chars in there that I need to encode? Don't think so.
Anyone want to go through the form source and confirm the data is correct? We need to get this working - I don't want some Halo 2 fanboys coming in here and spamming us with "HAHAHA u da sux0rs!!111".
Thankyou for reading.