我使用我的 flex 3 应用程序与 facebook 共享了一个链接。
我的代码是:
<mx:Button id="btnFb" click="fbShare(event)" />
protected function fbShare(event:MouseEvent):void
{
openPage('http://www.facebook.com/sharer/sharer.php?u='+getPublicationUrl(),"_popup");
}
private function getPublicationUrl():String
{
return "http://domain.com/index.html?userid=3&pubid=10";
}
现在,当我与 facebook 共享此(以上)链接时,它将仅共享“ http://domain.com/index.html?userid=3 ”此链接。它将跳过&pubid=10。
谢谢,