我很难使用 twitter API 中的“链接缩短”服务
https://dev.twitter.com/docs/tco-link-wrapper/faq
我的印象是,标准类型的链接在通过 API 时应该会自动缩短并可点击。然而,无论我如何发送链接,它总是作为不可点击的文本......从不缩短,并且总是计入 140 限制。
在使用 1.1 api 时,我们如何指导 twitter 处理 URL?
//this here is simply binary stuff uploaded and posted, using twitteroath library
$media = ss_get_image_binary($file_attachment_path);
$params = array(
'media[]' => "{$media};type=image/jpeg;filename={$file_attachment_path}",
);
$resource_url = 'https://api.twitter.com/1.1/statuses/update_with_media.json';
链接部分:
//I'm making my own hashtags, and counting post length stuff myself...
//the backlink variable here is just a typical http: link
$hashtags = ss_make_hastags($tags, $id);
$title = ss_twitter_status_format($image->post_title, $hashtags);
$backlink = get_permalink($id);
$params['status'] = $backlink . ' ' . $hashtags;
//最后,所有内容都发布到推特上
$connection = ss_twitter_communication_setup();
$tweet = $connection->post($resource_url, $params);
图像和状态发布正常。链接永远不会变得“活跃”或可点击。他们计入 140 个限制。
还有一件事 -
这是一切都返回的类,建立通信
$connection = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret);