我正在尝试通过 API 通过直接消息向我自己和另一位员工发送内部服务器通知。我已经完成了 dev.twitter 上的 API 设置,并下载了abraham 的 twitteroauth库。
我需要在哪里寻找直接从服务器发送消息(通过我的帐户),而不必每次都使用浏览器登录?我上次使用 twitter API 是在 oauth 之前,所以已经过去了一段时间。
tl;dr需要通过 twitter 发送直接消息而不看到这个
我正在尝试通过 API 通过直接消息向我自己和另一位员工发送内部服务器通知。我已经完成了 dev.twitter 上的 API 设置,并下载了abraham 的 twitteroauth库。
我需要在哪里寻找直接从服务器发送消息(通过我的帐户),而不必每次都使用浏览器登录?我上次使用 twitter API 是在 oauth 之前,所以已经过去了一段时间。
tl;dr需要通过 twitter 发送直接消息而不看到这个
您可以从dev.twitter.com上的应用页面获取您的个人令牌并使用它,而无需Sign in with Twitter
.
在您的应用页面下的部分OAuth settings
获取:
在Your access token
得到:
检查访问级别是否为Read, write, and direct messages
。否则在Settings
选项卡中更改它并重新创建您的访问令牌(选项卡底部有一个按钮Details
)。
然后在 php
require('Abrahams library');
// Get everything you need from the dev.twitter.com/apps page
$consumer_key = 'APP KEY';
$consumer_secret = 'APP SECRET';
$oauth_token = 'YOUR TOKEN';
$oauth_token_secret = 'YOUR TOKEN SECRET';
// Initialize the connection
$connection = new TwitterOAuth($consumer_key, $consumer_secret, $oauth_token, $oauth_token_secret);
// Send a direct message
$options = array("screen_name" => "theGuyIWantToDM", "text" => "Hey that's my message");
$connection->post('direct_messages/new', $options);