Skip to content

Commit 1c377a4

Browse files
committed
Added a section Understanding Flow of Request to Web Apps Created by Google Apps Script
1 parent 1055d27 commit 1c377a4

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
- [Authorization for scopes](#authorizationforscopes)
2020
- [Access token for accessing to Web Apps](#accesstokenforaccessingtowebapps)
2121
- [Share project of Web Apps with client users](#shareproject)
22+
- [Understanding Flow of Request to Web Apps Created by Google Apps Script](#understandrequestwebapps) <sup><font color="Red">Added at July 25, 2023</font></sup>
2223
- [How to use dev mode from outside](#howtousedevmode)
2324
- [Event object of Web Apps](#eventobject)
2425
- [Logs in Web Apps for Google Apps Script](#checklog)
@@ -282,6 +283,16 @@ var res = UrlFetchApp.fetch(url, params);
282283
Logger.log(res);
283284
```
284285

286+
<a name="understandrequestwebapps"></a>
287+
288+
# Understanding Flow of Request to Web Apps Created by Google Apps Script
289+
290+
Here, I would like to introduce a report for understanding the flow of the request to Web Apps created by Google Apps Script. There might be a case that various applications using the Web Apps are created and the Web Apps are used as the webhook. In that case, it is considered that when you have understood the flow of requests to the Web Apps, your goal might be able to be smoothly achieved. In this report, I would like to introduce the information about it.
291+
292+
You can see the detail of this at the following my gist.
293+
294+
[https://gist.github.com/tanaikech/131ba814a1f6012fd6a5ffe11789971f](https://gist.github.com/tanaikech/131ba814a1f6012fd6a5ffe11789971f)
295+
285296
<a name="howtousedevmode"></a>
286297

287298
# How to use dev mode from outside

0 commit comments

Comments
 (0)