Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
スタンドアロンアプリにHTML以外のコンテンツタイプを出力させる方法はありますか?つまり、プレーンテキストを出力して、別のアプリで使用できるようにしたい場合(単純なWebサービスを作成する場合)はどうでしょうか。
今週、JSON、ATOM、プレーン テキストなどの形式でコンテンツを返すことができる ContentService をリリースしました。
function doGet(e) { return ContentService.createTextOutput('Hello World') .setMimeType(ContentService.MimeType.TEXT); }