我的问题是:我如何转发评论'没有通过API显示原始推文网址
从网站转发使RT看起来像。
但是,当我手动将推文网址添加到我的推文中时,它看起来像。
注意文字网址。
答案 0 :(得分:5)
我的理解是您正在实现Twitter API提供的最接近的解决方案。 This thread谈到做以下事情:
答案 1 :(得分:1)
您的tweet有一个quoted_status,只需将tweet URL设置为attachment_url args,例如
client.update('cool', attachment_url: 'https://twitter.com/emorima/status/1061581991798169600')
它是带有twitter gem的红宝石代码
答案 2 :(得分:0)
基于lfx_cool的答案,我能够做到这一点: statuses/update
post('https://api.twitter.com/1.1/statuses/update.json', {
status:'Some comment', attachment_url:`https://twitter.com/${user.screen_name}/status/${id_str}`,
});