gpt4 book ai didi

facebook-graph-api - 此调用需要页面访问 token

转载 作者:行者123 更新时间:2023-12-05 01:16:56 25 4
gpt4 key购买 nike

我正在尝试使用 facebook 登录,已完成。我需要获取用户信息,如姓名、电子邮件、家乡、位置、性别、profile_pic。但我只能获得登录用户的用户名。我还向 api 添加了 fields 参数。您可以在下面的代码中看到这一点。

<div id="container"></div>
<script>
var accessToken;
window.fbAsyncInit = function() {
FB.init({
appId : 'App Id',
cookie : true,
xfbml : true,
version : 'v3.1'
});

FB.AppEvents.logPageView();

function getuserProfile() {
FB.api('/me?fields=id,name,email,birthday,gender,hometown,location,profile_pic', {access_token : accessToken }, function (response){
console.log(response);
});
}

FB.login(function(response) {
if (response.status === 'connected') {
accessToken = response.authResponse.accessToken;
getuserProfile();
} else {
console.log('not connected');
}
}, {scope: 'email'});
};

(function(d, s, id){
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {return;}
js = d.createElement(s); js.id = id;
js.src = "https://connect.facebook.net/en_US/sdk.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));

最佳答案

有些字段可能指定错误,这就是为什么 Facebook API 会给出这样的错误,即使其他一切看起来都很好。例如 profile_pic 字段可能会导致这样的错误,它应该类似于 picture.type(large)。另请参阅:FacebookGraphAPIError: (#210) This call requires a Page access token

关于facebook-graph-api - 此调用需要页面访问 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52258197/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com