This module for the Appcelerator Titanium Alloy MVC framework is built on the top of the Titanium HTTPClient. It provides simple abstractions and methods to common HTTP operations.
The module defines some shortcut to quickly set headers or data for a request. Also, it will
automatically parse the response and return a JSON object if the corresponding header is
application/json
.
Download this repository and install it
tiapp.xml
file, add the module to the modules section: <modules>
<module platform="commonjs">ts.httprequest</module>
</modules>
ts.httprequest-commonjs-x.x.x.zip
bundle into your root app directory.Or use your favorite package manager
gittio install ts.httprequest
var HTTPRequest = require('ts.httprequest');
var request = new HTTPRequest({
method: 'POST',
url: 'http://www.url.com'
data: {
key: 'value'
},
headers: {
key: 'value'
},
progress: progressHandler
}).then(handleSuccess).catch(handleError);
Create a new request ready to be sent
{Object}
config Config object with the following properties:
{String}
config.url URL to reach with the request{String}
[config.method="GET"] defines method (POST, GET, PUT, DELETE){Object}
[config.headers={}] defines request's headers{Object}
[config.data={}] defines request's data{Number}
[config.timeout=10000] defines request's timeout (ms){Function}
config.progress progress callbackreturn
{Promise}
A Promise resolved with the request response (formatted)
1.4 Upgrade
progress
option is now available as a callback to handle progress1.3 Upgrade
1.0 First version
Appcelerator, Appcelerator Titanium and associated marks and logos are trademarks of Appcelerator, Inc.
Titanium is Copyright (c) 2008-2015 by Appcelerator, Inc. All Rights Reserved.
Titanium is licensed under the Apache Public License (Version 2).