添加主题标签到twitter api status update

时间:2016-02-13 17:55:17

标签: php api twitter

现在试图找出阵列已经有一段时间但是我无法通过推文发布标签,推文本身发布得很好,只是没有标签,我的代码如下:

$tweetmsg='testing'; //this is just an example of the variable
$connection->post('statuses/update',array('status' => $tweetmsg, 'entitites' => array('hashtags' => array('text' => 'test'))));

文档:https://dev.twitter.com/rest/reference/post/statuses/update

我正在使用的API库:https://github.com/abraham/twitteroauth

1 个答案:

答案 0 :(得分:3)

你只需使用:

$tweetmsg='testing #one #two #three';

它应该有效,除非您将#更改为html实体或剥离它。

编辑: 作为提示,我会告诉您使用https://github.com/jublonet/codebird-php代替您的库可能更容易。