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
/** | |
* This is a code for Google App Script to see if there is a line for QBHouse at Kojimachi. | |
* main(): Access to qb house kojimachi homepage and check the number of people in line. | |
* Replace an email with yours. | |
* doGet(): This function is for publishing a web service as API (only one endpoint). | |
*/ | |
function main() { | |
var url = 'http://www.qbhouse.co.jp/search/detail.php?id=475'; // QB HOUSE Kojimachi | |
var text = UrlFetchApp.fetch(url).getContentText('utf-8'); |
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
.DS_Store | |
*.log | |
tmp/ |