HTTP requests (Fetch API)
Usage
GET
var url = 'https://httpbin.org/get?message=hello%20world';
return fetch(url, {})
.then(function(response) {
// Parse JSON from the body
return response.json()
})
.then(function(jsonData) {
dialog('Your message', jsonData.args.message);
});POST
Basic Authentication
Network errors
HTTP errors
Further Reading
Last updated