サーチ…


前書き

Googleのappscriptは、スタンドアロンのプラットフォームとして、Googleのドキュメント、シート、フォーム用のアドオン形式で動作します。ただし、何らかのアクションを実行するためにクライアントブラウザからGoogleアプリを呼び出す必要が生じることがあります。

そのため、Googleではクライアント側のリクエストをGoogleのアプリスクリプトに導入しました。この問題を解決するために、Googleはクライアントサイドライブラリ

これは、Googleアプリスクリプトへのクライアントサイドコールの例です

<script src="https://apis.google.com/js/api.js"></script>
<script>
function start() {
 // 2. Initialize the JavaScript client library.
 gapi.client.init({
'apiKey': 'YOUR_API_KEY',
// clientId and scope are optional if auth is not required.
'clientId': 'YOUR_WEB_CLIENT_ID.apps.googleusercontent.com',
'scope': 'profile',
}).then(function() {
// 3. Initialize and make the API request.
return gapi.client.request({
  'path': 'https://people.googleapis.com/v1/people/me',
  })
 }).then(function(response) {
console.log(response.result);
}, function(reason) {
console.log('Error: ' + reason.result.error.message);
});
};
// 1. Load the JavaScript client library.
 gapi.load('client', start);
</script>


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow