我将用户重定向到网址
display = '&display=page',
state = '&state=facebook_auth_' + csrfToken,
scope = '&scope=' + this.scopes,
redirect = '&redirect_uri=' + redirectUrl,
facebookURL = 'https://graph.facebook.com/oauth/authorize?client_id=' + this.clientId + redirect + scope + display + state;
出于某种原因,当我尝试通过将用户重定向到上面的URL来请求新权限时,Facebook不会显示要求用户访问新权限的提示。我做错了什么