Twitter API Issue: OAuth Request Token using GET works, POST fails?

I figured this out a while later. It turns out that because I was using an array for the post fields i.e. Curl_setopt($ch, CURLOPT_POSTFIELDS, **$post_vars_arr**); the form content type was multipart/form-data, which is not supported by the Twitter OAuth API.So I had to implode this array to a query-string and pass it to the same curl_setopt i.e.

Curl_setopt($ch, CURLOPT_POSTFIELDS, **$post_vars_str**); From what I understand, when you use a query-string instead of an array, the form content type will be application/x-www-form-urlencoded(which is supported by Twitter API) and not multipart/form-data. And that's how I got it work. I hope it helps someone else.

Check your client's system clock: read blainegarrett.com/2009/07/14/failed-to-v....

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions