Facebook 发送按钮

发布于 2024-11-03 08:06:35 字数 140 浏览 1 评论 0原文

我看到 Facebook 发送按钮 有什么方法可以通过 PHP SDK 使用该服务吗?

I saw facebook send button
Is there any way to use that service with PHP SDK?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

倾听心声的旋律 2024-11-10 08:06:35

我认为这里的示例(http://developers.facebook.com/blog/post/494)总结得很好:

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<fb:like href="example.com" show_faces="true" width="450" send="true">
</fb:like>

PHP SDK 不为发送按钮提供任何帮助。您所需要的只是 JavaScript SDK。将上面的代码插入您的页面之一,并将 example.com 替换为您要发送的资源,然后就完成了。

I think the example here (http://developers.facebook.com/blog/post/494) sums it up pretty well:

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#xfbml=1"></script>
<fb:like href="example.com" show_faces="true" width="450" send="true">
</fb:like>

The PHP SDK doesn't offer any help for the send button. All you need is the JavaScript SDK. Insert the code above into one of your pages and replace example.com with your resource to send and you are done.

挽袖吟 2024-11-10 08:06:35

我想另一个答案是组合的“发送和喜欢”按钮。

这里仅用于发送:

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=YOURAPPID&xfbml=1"></script>
<fb:send href="example.com" font="arial"></fb:send>

I guess the other answer is for a combined "send and like" button ..

Here is for only send :

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js#appId=YOURAPPID&xfbml=1"></script>
<fb:send href="example.com" font="arial"></fb:send>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文