私はネイティブ モバイル アプリを開発しています。必要なのは、ユーザーのアクセス トークンを渡し、モバイル ベースの操作を行うためのユーザーの詳細を取得することです。Facebookでも同じことができました。しかし、LinkedIn JavaScript API を介してユーザーのアクセス トークンを取得するにはどうすればよいですか。
Facebook API の方法:
function statusChangeCallback(response) {
// The response object is returned with a status field that lets the
// app know the current login status of the person.
// Full docs on the response object can be found in the documentation
// for FB.getLoginStatus().
if (response.status === 'connected') {
// Logged into your app and Facebook.
console.log(response); ===> GOT USER ACCESS TOKEN FROM THIS RESPONSE
testAPI();
} else if (response.status === 'not_authorized') {
// The person is logged into Facebook, but not your app.
document.getElementById('status').innerHTML = 'Please log ' +
'into this app.';
} else {
// The person is not logged into Facebook, so we're not sure if
// they are logged into this app or not.
document.getElementById('status').innerHTML = 'Please log ' +
'into Facebook.';
}
}
LinkedIn で同じことを達成するための助けをいただければ幸いです。