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 に答える