首页 > 解决方案 > 只读网站是否需要 FB App Review?

问题描述

我正在创建一个网站,该网站在主页中显示单个 Facebook 页面内容(活动基本信息、照片和五张最新的 instagram 照片)。我必须提交 App Review 吗?如果是,我需要什么权限?

该站点中没有 FB 登录请求,也没有使用它发布任何内容。没有显示 FB/Instagram 用户信息。

谢谢, 阿莱西奥

编辑:

这是我的代码。每个端点都是一样的

function loadFacebookEvents(){
    var xhttp = new XMLHttpRequest();

    xhttp.onreadystatechange = function() {
        if (this.readyState == 4 && this.status == 200) {
            fbEvents=JSON.parse(this.responseText).data;

            renderFacebookEvents()
            //loadFacebookPhotos()
        }
    };
    //events
    xhttp.open("GET", "https://graph.facebook.com/thecagelivorno/events?time_filter=upcoming&fields=cover,description,end_time,name,start_time,ticket_uri,place&access_token=<my-access-token>", true);



    xhttp.send();
}

标签: facebookfacebook-graph-apifacebook-app-requests

解决方案


推荐阅读