6

我正在尝试通过 API 通过直接消息向我自己和另一位员工发送内部服务器通知。我已经完成了 dev.twitter 上的 API 设置,并下载了abraham 的 twitteroauth库。

我需要在哪里寻找直接从服务器发送消息(通过我的帐户),而不必每次都使用浏览器登录?我上次使用 twitter API 是在 oauth 之前,所以已经过去了一段时间。

tl;dr需要通过 twitter 发送直接消息而不看到这个推特按钮

4

1 回答 1

16

您可以从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);
于 2012-12-20T16:29:58.713 回答