在PHP站点的页面上添加Facebook评论插件的实例教程_PHP
首先,需要在facebook创建一个APP,创建方法见https://developers.facebook.com/,APP有一项是填写Domain的,这里填写你website的Domain。(APP是绑定domain的,不能乱填)
然后就可以使用facebook comments plugins。
使用facebook comments plugins,可以在页面中插入facebook comments。
生成code方法:https://developers.facebook.com/docs/plugins/comments
例如:有一个页面是http://www.example.com/ ,在这个页面中插入以下代码便可以使用comments plugings。
<!-- include facebook js sdk --> <script id="facebook-jssdk" src="//connect.facebook.net/en_GB/all.js#xfbml=1&appId=这里填写APPID"></script> <!-- comments plugins --> <fb:comments colorscheme="light" numposts="4" height="360px;" width="614px" href="http://www.example.com/" fb-xfbml-state="rendered" class="fb_iframe_widget"></fb:comments>
在页面上显示如下
读取页面的分享总数与评论总数
https://graph.facebook.com/?ids={YOUR_URL}
{YOUR_URL} 需要 urlencode
例如:https://graph.facebook.com/?ids=http%3A%2F%2Fwww.example.com%2F
返回:
{ "http://www.example.com/": { "id": "http://www.example.com/", "shares": 399517, "comments": 392 } }
代码如下:
<?php $url = 'http://www.example.com/'; $api = 'https://graph.facebook.com/?ids='; $result = json_decode(file_get_contents($api.urlencode($url)), true); print_r($result); ?>
读取页面评论列表
https://graph.facebook.com/comments/?ids={YOUR_URL}
{YOUR_URL} 需要 urlencode
例如:https://graph.facebook.com/comments/?ids=http%3A%2F%2Fwww.example.com%2F
返回:
{ "http://www.example.com/": { "comments": { "data": [ { "id": "395320319544_27462154", "from": { "id": "100000223906701", "name": "Thu\u1eadn Phan Thanh" }, "message": "hello moto", "can_remove": false, "created_time": "2013-10-07T10:01:40+0000", "like_count": 1, "user_likes": false }, { "id": "395320319544_27877980", "from": { "id": "100001638736612", "name": "L\u00e3 Minh" }, "message": "hi you", "can_remove": false, "created_time": "2013-11-13T02:57:01+0000", "like_count": 4, "user_likes": false }, { "id": "395320319544_27879381", "from": { "id": "100004229015145", "name": "Th\u00f9y Dung" }, "message": "Mg \u1ee7ng h\u1ed9 t\u1edb v\u1edbi nh\u1edb \u003C3", "can_remove": false, "created_time": "2013-11-13T05:38:12+0000", "like_count": 3, "user_likes": false } ... ], "paging": { "cursors": { "after": "MjU0", "before": "Mzk4" }, "next": "https://graph.facebook.com/v1.0/395320319544/comments?limit=25&after=MjU0" } } } }
根据next的url再请求可以获取下一页的评论内容
代码如下:
<?php $url = 'http://www.example.com/'; $api = 'https://graph.facebook.com/comments/?ids='; $result = json_decode(file_get_contents($api.urlencode($url)), true); print_r($result); ?>

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP is an open source MVC framework. It makes developing, deploying and maintaining applications much easier. CakePHP has a number of libraries to reduce the overload of most common tasks.

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

The Bitget Exchange offers a variety of login methods, including email, mobile phone number and social media accounts. This article details the latest entrances and steps for each login method, including accessing the official website, selecting the login method, entering the login credentials, and completing the login. Users should pay attention to using the official website when logging in and properly keep the login credentials.

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op
