URL Fetch
This service allows scripts to access other resources on the web by fetching
URLs. A script can use the UrlFetch service to issue HTTP and HTTPS requests and
receive responses. The UrlFetch service uses Google's network infrastructure for
efficiency and scaling purposes.
Classes
Name | Brief description |
HTTPResponse | This class allows users to access specific information on HTTP responses. |
UrlFetchApp | Fetch resources and communicate with other hosts over the Internet. |
Methods
Method | Return type | Brief description |
getAllHeaders() | Object | Returns an attribute/value map of headers for the HTTP response, with headers that have
multiple values returned as arrays. |
getAs(contentType) | Blob | Return the data inside this object as a blob converted to the specified content type. |
getBlob() | Blob | Return the data inside this object as a blob. |
getContent() | Byte[] | Gets the raw binary content of an HTTP response. |
getContentText() | String | Gets the content of an HTTP response encoded as a string. |
getContentText(charset) | String | Returns the content of an HTTP response encoded as a string of the given charset. |
getHeaders() | Object | Returns an attribute/value map of headers for the HTTP response. |
getResponseCode() | Integer | Get the HTTP status code (200 for OK, etc.) of an HTTP response. |