TheSmiths-Widgets / ts.httprequest

[unmaintained] Request library creates and handles HTTP request using Titanium's HTTPClient.
14 stars 3 forks source link

HTTPRequest Titanium Alloy License

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.

Quick Start

Get it gitTio

Download this repository and install it

<modules>
    <module platform="commonjs">ts.httprequest</module>
</modules>

Or use your favorite package manager

Use it

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);

API

new HTTPRequest(config) :: Promise

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 callback
  • return {Promise} A Promise resolved with the request response (formatted)

Changelog

wearesmiths

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).