If I wrap this code in back ticks it should show.
//

I haven't even looked at that yet. I probably should do that soon by the sound of it.

Back tick if memory serves.
//

That's a good sign.
//

I just remembered that I have a Samsung refrigerator. I wonder how long until it decides to explode.

I can't deal with a busted screen. I have no idea how people manage like that.

uh wow

it's not a legit iPhone unless it's all busted up. :p

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.status
code
200
>>> r.text
'{"meta":{"code":200,"server":"16.163"},"data":{"token":"<my token>"}}'

//

heh just realized my code uses the python requests package so it's rather simple. are you using that or directly with httplib?

//