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
| <?php | |
| require_once "vendor/autoload.php"; | |
| ini_set('memory_limit', '-1'); | |
| date_default_timezone_set('Asia/Tokyo'); | |
| $filename = "intercom_conversations.csv"; | |
| use Intercom\IntercomClient; | |
| $client = new IntercomClient('<YOUR API KEY>'); |
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
| function doPost(e) { | |
| var channel = 'XXXXXXXX'; // fondeskの通知先チャンネル | |
| var url = 'https://hooks.slack.com/services/XXXXXXXX'; // Incoming Webhook URL | |
| var TOKEN = 'XXXXXXXX'; // Verification Token | |
| var botId = 'XXXXXXXX'; //fondeskのアプリのBOT ID | |
| var historySave = true; //データをスプレッドシートに保存する | |
| var sheetName = 'list'; //名簿リストのスプレッドシート名 | |
| var historySheetName = 'history'; //入電履歴のスプレッドシート名 | |
| var suppressedSheetName = 'suppressed'; //営業電話のスプレッドシート名 |