[PHP]用15行PHP來Twitter!

LINEで送る
[`evernote` not found]

就降子15行
在任何可以用PHP的地方開始Twitter

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function tweet($message, $username, $password)
{
    $context = stream_context_create(array( 
        'http' => array( 
        'method' => 'POST', 
        'header' => sprintf("Authorization: Basic %s\r\n", base64_encode($username.':'.$password)). 
            "Content-type: application/x-www-form-urlencoded\r\n", 
        'content' => http_build_query(array('status' => $message)), 
        'timeout' => 5, 
        ), 
    )); 
    $ret = file_get_contents('http://twitter.com/statuses/update.xml', false, $context); 
 
    return false !== $ret;
}

不過前提是php.ini 中的 file_get_contents得先打開才行

2 則迴響於《[PHP]用15行PHP來Twitter!

回應已關閉。