Twitter分享链接只显示主题标题的第一个词

时间:2014-09-30 13:30:36

标签: twitter share

大家好基本上我有一些名为$ content [topic]的东西,在php中会显示主题,可能是“Platformers What Are They”

但是当用户点击我的分享按钮时,它只会显示“PLATFORMERS [The LINK]”,而不是我想要显示的整个标题,我该如何更正?

这是我正在使用的分享按钮的代码

<a href=https://twitter.com/intent/tweet?url=http://www.sentuamessage.com/blog.php?who=$content[id]&text=$content[topic]&hashtags=blogs,SentUAMessage target=new>Image Here</a>

任何想法?

1 个答案:

答案 0 :(得分:1)

您需要URLencode所有变量。

在你的情况下,做一些像....

$URL = "https://twitter.com/intent/tweet?"
    + "url=" + urlencode("http://www.sentuamessage.com/blog.php?")
    + "&who=" + urlencode($content[id])
    + "&text=" + urlencode($content[topic])
    + "&hashtags=" + urlencode("blogs,SentUAMessage");

基本上,确保所有内容都已正确编码。