Buscar..


Introducción

Google Appscript funciona bien como una plataforma independiente y en el formato de complemento para documentos, hojas y formularios de Google. Sin embargo, hay ocasiones en que un navegador cliente puede necesitar llamar a una aplicación de Google para realizar alguna acción.

Por lo tanto, Google introdujo las solicitudes del lado del cliente a los scripts de aplicaciones de Google. Para resolver este problema, Google introdujo las bibliotecas del lado del cliente.

Este es un ejemplo de una llamada del lado del cliente a un script de aplicación de 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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow