0
votes
0answers
27 views

Streaming/Partial Results Through Tastypie

Is there a way to stream/return partial results through tastypie (it seems to be possible in Django in general). I have an API that needs to do a bunch of requests to external services in order to ...
1
vote
1answer
268 views

HTTP POST Data in HTTPUrlConnection not getting set?

I am creating a HTTPUrlConnection in android and preparing it for a post as shown below urlConnection = (HttpURLConnection) url.openConnection(); urlConnection.setRequestProperty("content-type", ...
0
votes
2answers
968 views

Put a custom http header in backbone

I am creating an API with Tastypie and I want to access to the API from Backbone. To send credentials I use an user_id and a api_key. I do this in android and with curl and this work great, but I can ...
3
votes
1answer
267 views

Tastypie POST Location HTTPS vs. HTTP

When I POST a new resource to my RESTful Tastypie API, I create a resource and get a 201 response like this: HTTP/1.1 201 CREATED Content-Type: text/html; charset=utf-8 Date: Wed, 19 Sep 2012 ...
0
votes
1answer
588 views

Upload a file with Tastypie Django with andorid client

I am programming an API in Tastypie and I want to upload files with multi-part http request. I've created this function in an async task in my android file: public JSONObject ...
0
votes
2answers
391 views

Tastypie Django POST error

I use Tastypie for Django's API. but it returns error. my code is bellow. $.ajax({ type : "POST", url : "http://192.168.1.130:8000/api/user/author/", data : '{"first_name": ...
8
votes
1answer
515 views

Heroku and Django with 405 error

I am trying to move my django project from an apache setup over to heroku. At this point, everything seems to be working fine except for an issue I am having with using the PATCH Http Method (which I ...
3
votes
2answers
135 views

Is there a proper way of ensuring only one user at a time makes changes to an object with REST+HTTP?

I've created a Django/Tastypie application where multiple people could possibly be changing attributes of a row in the database at the exact same time or possibly PUT data which is stale. For ...