3
我使用這個庫直接發送消息... http://github.com/abraham/twitteroauth如何用亞伯拉罕的OAuth庫
我能夠更新狀態之類的東西,但似乎無法找到直接的信息的功能。
另外,有沒有其他的圖書館,我可以使用?
我使用這個庫直接發送消息... http://github.com/abraham/twitteroauth如何用亞伯拉罕的OAuth庫
我能夠更新狀態之類的東西,但似乎無法找到直接的信息的功能。
另外,有沒有其他的圖書館,我可以使用?
發送直接信息與發佈狀態幾乎相同。
$twitteroauth->post('statuses/update', array('status' => 'status text here'));
$twitteroauth->post('direct_messages/new', array('text' => 'dm text here', 'screen_name' => 'recipients screen_name'));