Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 884 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 884 Bytes

Template - HTTP Client

Eclipse License GitHub contributors

Overview

Simple "HTTP Client" JavaScript service

var httpClient = require('http/v3/client');
var response = require('http/v3/response');

var httpResponse = httpClient.get('http://services.odata.org/V4/Northwind/Northwind.svc/');

response.println(httpResponse.text);
response.flush();
response.close();

License

This project is copyrighted by SAP SE and is available under the Eclipse Public License v 2.0. See LICENSE and NOTICE.txt for further details.