- Create a new Google Sheets document
- Rename the
list 1tocollect(name can be changed to your own) - Optionally describe the first column as email and the second column as subscription date
- Open Add-ons » Apps Script
- Paste the extension code into the editor
- Click deploy at the top
- Deploy as a web application
- Copy macro link
- Send a POST
application/x-www-form-urlencodedrequest with an email field
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { VK } = require('vk-io'); | |
| const { Commander, useMessage, useViewer, onEnter, ref, watch } = require('./core'); | |
| const vk = new VK({ | |
| token: '' | |
| }); | |
| const commander = new Commander(); |