Sha256: d90596cf9e1033623390b52931b61dd78c742f307a7da76a0b070a8399e19650

Contents?: true

Size: 435 Bytes

Versions: 27

Compression:

Stored size: 435 Bytes

Contents

#Rest Service
This is the RESTful network request service. Designed for small payloads of RESTful network requests.

###Info to start a request
```js
var info = {
  url: "http://my_rest_endpoint",
  params: {
    my_param_0: "test",
  }
}
```

When you receive a request back, you will receive 
```js
{
  success: true,
  info: 
}
```
Where if success is true, then info is a hash. If success is false, then info is a failure message.

Version data entries

27 entries across 27 versions & 1 rubygems

Version Path
flok-0.0.21 docs/services/rest.md
flok-0.0.20 docs/services/rest.md
flok-0.0.19 docs/services/rest.md
flok-0.0.18 docs/services/rest.md
flok-0.0.17 docs/services/rest.md
flok-0.0.16 docs/services/rest.md
flok-0.0.14 docs/services/rest.md