http://dev.twitter.com, big blue bar at the bottom of the screen?

<http://dev.twitter.com/announcements>

Tom

PS: Have you been living under a rock? Every major tech blog announced
it... (And sorry if I am rude)



On 9/22/10 4:52 PM, Daniel Contarini wrote:
> This  code have been working perfectly until the last 20 days +-, i
> wanna know what i need to change in this code to make it works again.
> 
> $userpass="My user and pass"; //sure to be correct
> 
>  $host = "http://twitter.com/statuses/update.xml?
> status=".urlencode(htmlentities($message));
> 
>  $ch = curl_init();
>  curl_setopt($ch, CURLOPT_URL, $host);
>  curl_setopt($ch, CURLOPT_VERBOSE, 1);
>  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
>  curl_setopt($ch, CURLOPT_USERPWD, $user$pass);
>  curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
>  curl_setopt($ch, CURLOPT_POST, 1);
>  curl_setopt($ch, CURLOPT_POSTFIELDS, "");
> 
>  $result = curl_exec($ch);
> 
>  $resultArray = curl_getinfo($ch);
> 
>  curl_close($ch);
> 

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk?hl=en

Reply via email to