当我在网站上使用Facebook登录名时,出现此错误“无效范围:user_mobile_phone”。
我检查了我的代码,那里没有user_mobile_phone的范围。仅当我在Apple iPhone上使用浏览器时,才会出现此错误。这是我的代码:
$('.facebook-btn').click(function(){
$(this).hide();
$('.progress_image_facebooklogin').show();
FB.login(function(response) {
console.log(response);
}, {scope: 'email'});
});