Flex 3 アプリケーションを使用して 1 つのリンクを 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をスキップします。
ありがとう、