squirreltown
12 years agoRoku Guru
POST
This:
returns this:
Http: # 662 done status: 400 time: 246ms request: POST https://api.twitter.com/1.1/statuses/update.json
body: oauth_consumer_key=XX&oauth_nonce=XX&oauth_signature=9XX&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1383585583&oauth_token=XX&oauth_version=1.0
Why is the value string ""status=test" not attaching? The debugger wont let me do it any other way.
Thanks
http = NewHttp("https://api.twitter.com/1.1/statuses/update.json","" ,"POST")
oa.sign(http,true)
http.PostFromStringWithTimeout( "status=test", 10 )
returns this:
Http: # 662 done status: 400 time: 246ms request: POST https://api.twitter.com/1.1/statuses/update.json
body: oauth_consumer_key=XX&oauth_nonce=XX&oauth_signature=9XX&oauth_signature_method=HMAC-SHA1&oauth_timestamp=1383585583&oauth_token=XX&oauth_version=1.0
Why is the value string ""status=test" not attaching? The debugger wont let me do it any other way.
Thanks