amygdala icon indicating copy to clipboard operation
amygdala copied to clipboard

RESTful HTTP client for JavaScript powered web applications

Results 7 amygdala issues
Sort by recently updated
recently updated
newest added

If the server responds with no items in the array this is not currently ignored and not reflected to the local store. Change to handle empty response array and override...

.find('users', 1) doesn't return anything. You need to parse the number in as a string .find('users', '1') The find function doesn't have support for numerical ids. Possible to just change...

Use cases: - user has oneToMany coupons, and coupons are retrieved via /api/v1/user/{user_id}/coupons - API endpoint requires a parameter (no GET all), /api/v1/notes/{user_id}/ This can be achieved via query parameters...

enhancement

I have the fallowing instance configured: ``` this.store = new Amygdala({ 'config' : { 'apiUrl' : 'http://localhost:8081', 'idAttribute': 'url', }, 'schema' : { 'plans' : { 'url' : '/plans/' }...

Django will redirect if missing trailing slashes, but this will only work for GET. Redirects will also not work if doing a cross origin request while developing (eg localhost:4000 ->...

The FR is for auth in mind. Most APIs that use authentication require you to append a token on every request either as a query param or in the post...