我一直在尝试按照 facebook 给出的说明将我的域列入白名单,但没有任何效果。
我第一次尝试使用 curl,响应是,{result:"success"}
但是当我尝试列出列入白名单的域时,我得到了{data:[]}
然后我尝试使用节点请求模块如下:
request.post("https://graph.facebook.com/v2.6/me/messenger_profile?access_token=sfdlksdfu79r9429049824982342348sjdfsf", {
"setting_type": "domain_whitelisting",
"whitelisted_domains": ["https://mydomainw.com", "https://mydomainw.com/profile", "https://sfujyx.com/ofr", "mydomain1.com", "mydomain.com"],
"domain_action_type": "add"}, function (err, res, body) {
console.log("Whitelisting domain");
if (!err) {
console.log(body);
console.log("Showing the list of whitelisted:");
request.get("https://graph.facebook.com/v2.6/me/messenger_profile?fields=whitelisted_domains&access_token=sfdlksdfu79r9429049824982342348sjdfsf", function (err, res, body) {
if (!err) {
console.log(body);
} else {
console.log(err);
}
});
} else {
console.log(err);
}
});
它仍然带来与 curl 相同的结果:
当我使用 Facebook Graph Api Explorer 工具时,出现以下错误:
我真的被卡住了,我不知道我应该做什么,也不知道人们如何将域列入信使扩展的白名单。
我做错了什么?为什么没有添加域?
我的项目在 Google App Engine 上。