0
我正在使用Google Calander Api Javascript庫。而對於身份驗證,我使用的是OAuth 2.0。驗證客戶端
我的問題是:我如何驗證特定的客戶端?
例如,我要驗證以下客戶端:[email protected]:
function load() {
gapi.client.load('calendar', 'v3', auth);
}
function auth() {
gapi.auth.authorize({
'client_id': clientId,
'scope': scopes,
'immediate': false
});
}
function makeRpcRequest() {
var request = gapi.client.calendar.events.insert({
'calendarId': 'primary',
'resource': resource
});
}