인증 없이 google-api-javascript-client(gapi) 사용[코드 예]
5126 단어 googleapigapigooglecalendarapi
몇 가지 주의 사항이 있습니다.
먼저 api.js를 로드합니다:
<script src="https://apis.google.com/js/api.js"></script>
. 그런 다음 다음 스크립트를 추가합니다. // fill in your api key
const apiKey = "******";
// select a calendar by id
const calendarId = "******";
function start() {
// Initializes the client with the API key and the Calendar API.
gapi.client.init({
'apiKey': apiKey,
// load the correct library (calendar in this case)
'discoveryDocs': ['https://www.googleapis.com/discovery/v1/apis/calendar/v3/rest'],
'scopes': 'https://www.googleapis.com/auth/calendar.readonly'
}).then(function() {
return gapi.client.calendar.events.list({
'calendarId': calendarId,
'maxResults' : 5,
});
}).then(function(response) {
console.log('response',response.result.items);
}, function(reason) {
console.log('Error: ', reason);
});
};
// Loads the JavaScript client library and invokes `start` afterwards.
gapi.load('client', start);
이 예는 google-api-javascript-client: https://github.com/google/google-api-javascript-client/blob/master/docs/samples.md#loading-an-api-and-making-a-request 의 샘플을 기반으로 합니다.
Reference
이 문제에 관하여(인증 없이 google-api-javascript-client(gapi) 사용[코드 예]), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/peterlidee/using-google-api-javascript-client-gapi-with-no-authentication-code-example-25je텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)