我正在使用PHP中的Slack斜杠命令,该命令使用Twitter用户名并返回该人的最新推文。
我无法弄清楚如何显示用户的个人资料图片,使其看起来像Slack的Twitter集成一样好。
在我看来,问题是我必须包括' unfurl_media:true'在JSON中被发送回Slack。这意味着我不能只使用echo
打印出我想要的Twitter数据,这是一个关联数组。
我尝试从关联数组中获取我想要的Twitter数据,再次使用JSON对其进行编码,然后打印出来。但所有这一切都是将JSON打印为纯文本。我检查了一个JSON验证器,它说什么打印到Slack是有效的JSON,所以我不明白为什么松弛不能将它转换成样式化的消息。
有什么建议吗?
这是代码。它是从一堆不同的地方拉出来的法兰克代码,我试图屈服于我的意愿。
<?php
require_once('TwitterAPIExchange.php');
$command = $_POST['command'];
$text = $_POST['text'];
$token = $_POST['token'];
if($token != '[insert your Slack slash command token here]'){
$msg = ":squirrel: The token for the slash command doesn't match. We're done here until IT fixes it. Don't worry, Squirrelock is on the case.";
die($msg);
echo $msg;
}
$settings = array(
'oauth_access_token' => "[insert access token here]",
'oauth_access_token_secret' => "[insert access token secret here]",
'consumer_key' => "[insert consumer key here]",
'consumer_secret' => "[insert consumer secret here]"
);
$url = "https://api.twitter.com/1.1/statuses/user_timeline.json";
$requestMethod = "GET";
$getfield = '?screen_name='.$text.'&count=1';
$twitter = new TwitterAPIExchange($settings);
$string = json_decode($twitter->setGetfield($getfield)
->buildOauth($url, $requestMethod)
->performRequest(), $assoc = TRUE);
foreach($string as $items)
{
$reply = "".$items['user']['profile_image_url']." *".$items['user'] ['name']."* ".$items['user']['screen_name']. "\n ".$items['text']."\n ".$items['created_at']."";
}
$data = json_encode(array(
"response_type" => "in_channel",
"text" => $reply,
"unfurl_media" => true,
"unfurl_links" => true
));
echo $data;
?>
答案 0 :(得分:3)
将我的评论转到答案,因为它似乎解决了问题:
在header('Content-Type: application/json');
之前添加echo $data;
。问题是Slack将您的回复解释为文本。只有在Content-Type
正确的情况下,它才会将其解释为JSON。