私は Facebook JavaScript API を使用しており、ドキュメントを調べましたが、次の質問に対する答えが見つかりません。
ユーザーがアプリケーション固有のアクセス許可 (この場合は read_stream) を付与した後、その特定のデータをどのように取得しますか? 具体的には、ログインプロセスの一部として次を使用しています。
function login(){
alert("[fbCommon]" + ' > login');
FB.login(function(response) {
if (response.authResponse) {
//console.log('Welcome! Fetching your information.... ');
alert("[fbCommon]" + ' > login > ' + 'Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
//console.log('Good to see you, ' + response.name + '.');
alert("[fbCommon]" + ' > login > ' + 'Good to see you, ' + response.name + '.');
});
} else {
alert("[fbCommon]" + ' > login > ' + 'User cancelled login or did not fully authorize.');
//console.log('User cancelled login or did not fully authorize.');
}
}, {scope: 'read_stream'});
}
ご協力いただきありがとうございます。