google-apps-script
Клиент звонит в Google apps-script
Поиск…
Вступление
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