Class ContentService

Content Service

Service for returning text content from a script.

You can serve up text in various forms. For example, publish this script as a web app.

 function 
  
 doGet 
 () 
  
 { 
  
 return 
  
 ContentService 
 . 
 createTextOutput 
 ( 
 'Hello World' 
 ); 
 } 
When visiting the web app URL you will see "Hello World" in the browser. Due to security considerations, scripts cannot directly return content to a browser. Instead, they must serve the content from a different URL. This is why the URL in the browser for output created via this web app will be different than the original script URL.

Properties

Property Type Description
Mime Type
Mime Type

Methods

Method Return type Brief description
Text Output Create a new Text Output object.
Text Output Create a new Text Output object that can serve the given content.

Detailed documentation

create Text Output()

Create a new Text Output object.

 function 
  
 doGet 
 () 
  
 { 
  
 const 
  
 output 
  
 = 
  
 ContentService 
 . 
 createTextOutput 
 (); 
  
 output 
 . 
 append 
 ( 
 'Hello world!' 
 ); 
  
 return 
  
 output 
 ; 
 } 

Return

Text Output — the new TextOutput object.


create Text Output(content)

Create a new Text Output object that can serve the given content.

 function 
  
 doGet 
 () 
  
 { 
  
 const 
  
 output 
  
 = 
  
 ContentService 
 . 
 createTextOutput 
 ( 
 'Hello world!' 
 ); 
  
 return 
  
 output 
 ; 
 } 

Parameters

Name Type Description
content
String the content to serve.

Return

Text Output — the new TextOutput object.

Create a Mobile Website
View Site in Mobile | Classic
Share by: