Skip to content

Instantly share code, notes, and snippets.

View kagamoc's full-sized avatar

kagamoc

View GitHub Profile
@kagamoc
kagamoc / Code.js
Last active September 6, 2021 06:13
Brainf*ck Interpreter for LINE Messaging API (using Google Apps Script)
var ACCESS_TOKEN = '';
var url = 'https://api.line.me/v2/bot/message/reply';
function doPost(e) {
replyMessage(e);
return ContentService.createTextOutput(
JSON.stringify({ content: 'post ok' })
).setMimeType(ContentService.MimeType.JSON);
};