0

Javascript でログインした後にユーザーの FID、電子メール、および名前を取得したいので、Ajax 呼び出しを行い、それらをデータベースに保存します。

これは現在、ユーザーをログインさせるためのコードです:

    if (response.status === 'connected') { // the user is logged in and connected to your application
        var uid = response.authResponse.userID;
        var accessToken = response.authResponse.accessToken;
        // Alert with fid, email and name
        } else { //the user isn't logged in to Facebook or isn't connected to the application
        FB.login(function(response) {
            if (response.authResponse) {
                accessToken = response.authResponse.accessToken;
                // Alert with fid, email and name
                }
            }, {scope: 'email'});
        }

どうすればいいですか?

4

1 に答える 1

2

電話

https://graph.facebook.com/me

また

https://graph.facebook.com/USER_ID

また

https://graph.facebook.com/fql?q=SELECT uid,name,email FROM user WHERE uid=me()

が必要になります

email

許可

于 2012-05-06T10:53:18.763 に答える