页面Facebook访问令牌

时间:2016-03-23 16:56:29

标签: facebook facebook-graph-api

我正在一个网站上工作,通过使用JS和JSON调用的GRAPH API显示Facebook页面的评论/评级以获得评级。但是没有访问令牌就没有办法阅读这些评估,因为它们是公共信息?或者超过60天的人。

<script id="erasable" type="text/javascript">
    var getJSON = function(url) {
        return new Promise(function(resolve, reject) {
        var xhr = new XMLHttpRequest();
        xhr.open('get', url, true);
        xhr.responseType = 'json';
        xhr.onload = function() {
            var status = xhr.status;
            if (status == 200) {
                resolve(xhr.response);
            } else {
                reject(status);
            }
        };
        xhr.send();
        `enter code here`});
    };
    getJSON('https://graph.facebook.com/FACEBOOK-PAGE-ID/ratings?access_token=PAGE-ACCESS-TOKEN').then(function(data) {
        //some html pos-processing
    }, function(status) { //error detection....
        //alert('Something went wrong.');
    });
</script>

0 个答案:

没有答案