@hybotics If I wrap this code in back ticks it should show.
// @matigo
@larand I haven't even looked at that yet. I probably should do that soon by the sound of it.
I just remembered that I have a Samsung refrigerator. I wonder how long until it decides to explode.
@matigo I can't deal with a busted screen. I have no idea how people manage like that.
@hybotics Hopefully this renders well… I've redacted the secret bits of course…
>>> import requests
>>> params = {"acctname": "myemail", "acctpass": "mypasswd", "clientguid": "myclientkey"}
>>> r = requests.post("https://api.10centuries.org/auth/login", data=params)
>>> r.statuscode
200
>>> r.text
'{"meta":{"code":200,"server":"16.163"},"data":{"token":"<my token>"}}'
// @matigo
@hybotics heh just realized my code uses the python requests package so it's rather simple. are you using that or directly with httplib?
// @matigo