ghostwolfling
Member
Hello there,
I'm trying to reply to a thread using Python script (ofc it's authorized on my forum), but I don't really understand which params should I send. Nothing happens if I give it only "message" value like this:
params = urllib.urlencode({'message' : 'test'})
get = urllib2.Request("http://forumdomain/threads/threadname.60/add-reply" , params, headers)
opener.open(get, params)
So I am wondering which params should I send to the server to reply?
I'm trying to reply to a thread using Python script (ofc it's authorized on my forum), but I don't really understand which params should I send. Nothing happens if I give it only "message" value like this:
params = urllib.urlencode({'message' : 'test'})
get = urllib2.Request("http://forumdomain/threads/threadname.60/add-reply" , params, headers)
opener.open(get, params)
So I am wondering which params should I send to the server to reply?