Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Execute Google Apps Script using C#

I am new to Google Calendar API. I created function to add events to the Google calendar using Google Apps Script. This works well. But I want to execute the Google Apps Script from C# application.

How to do that?

like image 584
Jesuraja Avatar asked Sep 28 '22 11:09

Jesuraja


1 Answers

This is now possible thanks to the Execution API, which allows you to publish Google apps script functions for secure authenticated execution from C#.

The .NET Quickstart gives an example of running a Script called getFoldersUnderRoot().

like image 127
Mogsdad Avatar answered Oct 01 '22 16:10

Mogsdad