我正在创建一个网站,该网站在首页中显示一个Facebook页面内容(事件基本信息,照片和五张最新的instagram照片)。我需要提交应用评论吗?如果是,我需要什么权限?
该站点中没有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();
}