5
4

1 回答 1

3

您不应在“appendQueryParameter”的第一个参数中提供与号 (&),它将自动为您添加。将其用作:

b.appendQueryParameter("id", id); // instead of ("*&*id", id);
b.appendQueryParameter("view=article", null); // instead of ("*&*view=article", null);

输出将是您期望的输出

https://twitter.com/intent/tweet?text=Hello title&url=http://www.mywebsite.com/index.php?option%3Dcom_content%26catid=40&id=12546&view%3Darticle=null

请参阅此处的使用示例。

于 2012-12-31T01:48:34.447 回答