google-apps-script
Client roept naar Google apps-script
Zoeken…
Invoering
Google appscript werkt goed als een stand-alone platform en in de add-on-indeling voor Google-documenten, -bladen en -formulieren. Er zijn echter momenten waarop een clientbrowser mogelijk naar een Google-app moet bellen om een actie uit te voeren.
Daarom introduceerde Google client-side verzoeken aan Google-apps-scripts. Om dit probleem op te lossen, introduceerde Google de client-side bibliotheken
Dit is een voorbeeld van een client-side call naar een Google-app-script
<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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow