1
vote
1answer
17 views

How to reload a page on change in server database

I'm using tastypie + django + backbone.js . My application should be usable by more than one user at a time. What I want to do is to show all users "live" changes on the database without having the ...
2
votes
1answer
66 views

Uploading files to tastypie with Backbone?

Checked some other questions and I think my tastypie resource should look something like this: class MultipartResource(object): def deserialize(self, request, data, format=None): if not ...
1
vote
1answer
28 views

Tastypie in IIS returns HTML instead of JSON

When issuing a POST to Tastypie (Django) to add a new "project" object to my database, the following code works fine outside of IIS, in debug mode. $.ajax({ url: ...
0
votes
1answer
102 views

Frontend ajax POST call can't login to Django

I've spent several days to no avail and was wondering if anyone could help me? I am trying to use Django as a backend only with the ultimate goal of porting to a mobile application. I have a form and ...
1
vote
0answers
168 views

Phonegap and Django Authentication

I am in the middle of building a PhoneGap (Cordova) app which I would like to be able to talk to a Django site of mine. The steps needed to get the app working are: Authenticate the user (stay ...
0
votes
0answers
244 views

Ajax Post Request to TastyPie Doesn't Do Anything

I am having an issue with the Django TastyPie API and creating a post request in JQuery. The curl request: curl --dump-header - -H "Content-Type: application/json" -X POST --data ...
3
votes
1answer
446 views

Can't POST to Django Tastypie cross-domain XHR

Trying to post to this Django Tastypie API: http://lit-hollows-9760.herokuapp.com/api/food I have this middleware installed to allow for cross-domain XHR: https://gist.github.com/1369619 from ...
1
vote
3answers
385 views

Tastypie — How to make obj_create send the newly created entity back?

Im sending a POST that creates a new simple Resource (not a ModelResource), and that works. My question is how do I get back for example the created resource's bundle property to the ajax response? ...
0
votes
2answers
287 views

jQuery Ajax fails when accessing a resource (Django Tastypie)

I've created a simple resource that via GET outputs my json object. The URL is http://127.0.0.1:8000/api/v1/advert/?format=json and works fine. Now when I try and access the resource using jQuery ajax ...
9
votes
4answers
3k views

How do I check that user already authenticated from tastypie?

When user authenticates in Django, how do I check that from tastypie? Once user logs on, the view includes some JS that pulls data from API, which is backed by tastypie. I have basic ...
8
votes
3answers
4k views

Ajax POST and Django Tastypie

curl --dump-header - -H "Content-Type: application/json" -X POST --data '{"latlong": "test"}' http://localhost:8000/geo/api/geolocation/ The above works fine but when I try to replicate the POST in ...
4
votes
3answers
2k views

Exposing “virtual” field in a tastypie view?

I want to create a view using tastypie to expose certain objects of the same type, but with the following two three twists: I need to get the objects using three separate queries; I need to add a ...