以下のコードを確認してください。plus api の dart コードです。承認の問題が発生しています。API コンソールで Google+ API を有効にしました。OAuth2 の代わりに API キーを使用しています。
Failed to load resource: the server responded with a status of 401 (Unauthorized)
コード:
#import ('dart:html');
#import("package:google-api-dart-client/plus-v1.dart");
void main () {
final request = new PlusApi();
request.key = "I have entered API key here";
Future<Person> myPerson=request.people.get("me");
myPerson.then((user)=>print(user.id));
}
更新: こんにちはセス、jj の返信から、oauth2 も使用する必要があることがわかりました。JavaScript からのフォローを正常にテストできました。Dart で複製しようとしていますが、まだ成功していません :-(
var clientId = 'here clientId';
var apiKey = 'here API Key';
var scopes = 'https://www.googleapis.com/auth/plus.me';
function handleClientLoad() {
gapi.client.setApiKey(apiKey);
window.setTimeout(checkAuth,1);
}
function checkAuth() {
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: true}, handleAuthResult);
}
function handleAuthResult(authResult) {
var authorizeButton = document.getElementById('authorize-button');
if (authResult && !authResult.error) {
authorizeButton.style.visibility = 'hidden';
makeApiCall();
} else {
authorizeButton.style.visibility = '';
authorizeButton.onclick = handleAuthClick;
}
}
function handleAuthClick(event) {
gapi.auth.authorize({client_id: clientId, scope: scopes, immediate: false}, handleAuthResult);
return false;
}
function makeApiCall() {
gapi.client.load('plus', 'v1', function() {
var request = gapi.client.plus.people.get({
'userId': 'me'
});
request.execute(function(resp) {
var heading = document.createElement('h4');
var image = document.createElement('img');
image.src = resp.image.url;
heading.appendChild(image);
heading.appendChild(document.createTextNode(resp.displayName));
document.getElementById('content').appendChild(heading);
});
});
}