Skip to content

Instantly share code, notes, and snippets.

@mgng
Created September 1, 2010 09:00
Show Gist options
  • Save mgng/560435 to your computer and use it in GitHub Desktop.
Save mgng/560435 to your computer and use it in GitHub Desktop.
<?php
$id = 'あなたのID';
$pass = 'あなたのパスワード';
$message = 'おっぱいペロペロ(^ω^)';
$result = file_get_contents(
'http://twitter.com/statuses/update.json?status='.rawurlencode($message),
false,
stream_context_create(array(
'http' => array(
'method' => 'POST',
'header' => 'Authorization: Basic '.base64_encode("{$id}:{$pass}")
)
))
);
var_dump($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment