我使用这个 API: http: //developers.facebook.com/docs/share/ 在页面底部,他们提到了一种创建我们自己的按钮的方法。
所以我的代码是这样的:
<body>
<?php
function encodeURIComponent($str) {
$revert = array('%21' => '!', '%2A' => '*', '%27' => "'", '%28' => '(', '%29' => ')');
return strtr(rawurlencode($str), $revert);
}
?>
<a href="http://www.facebook.com/sharer.php?u=<?php echo encodeURIComponent('http://www.google.com'); ?>&t=<?php echo encodeURIComponent('It is the google website'); ?>">Share this2</a>
</body>
但它不能正常工作!它总是将页面标题显示为共享对话框中的标题!