0
votes
1answer
40 views

__init__() got an unexpected keyword argument 'default' in json/__init__.py in dumps

I have a django server running, and, out of nowhere, I got this error. I really have no idea what changes led to this. I'm trying to solve this for hours, but I can't find why this is happening. ...
0
votes
0answers
30 views

Django tastypie - long JSON output is truncated causing parsing error

I have a RESTful webservice returning large amount of JSON data implemented using django-tastypie. I noticed that JSON is suddenly truncated, the whole output is about 2.1 MB but it should be more ...
1
vote
1answer
183 views

How to add data to tastypie resources in regular django views

I am running into a problem trying to include tastypie resources in a larger json response in a regular django view. I would like to have the view return something like this (based on a queryset ...
1
vote
0answers
77 views

Django tastypie serializes DecimalField as json strings instead of numbers

I have a django application with tastypie. One of the models in my app has a DecimalField. When I get a response from the API in JSON format, all the decimal fields appear as strings instead of ...
1
vote
1answer
190 views

Django (JSONField) and tastypie

I have a table into mysql that is the type TextField (django) by using the JSONField. This is how my model looks from django.db import models from json_field import JSONField class ...
0
votes
2answers
202 views

Create Resource on Django Tastypie with a Java POST request but getting 500 error code

I am trying to post a new resource to a django tastypie API with a Java Client, but i am getting a Http 500 error code. Basically i am just trying to make a new reservation on my api from the client. ...
2
votes
1answer
900 views

How I acces to Backbone collection elements from Tastypie JSON?

I've write a API with Tastypie-Django and I want to do a webpage using Backbone to do more simply access to model. I've created a Model and a collection like this in Backbone: var Abstract = ...
0
votes
1answer
118 views

Bad Syntax error for URI value after JSON serialization

For a REST web service call using PUT, I need to send JSON that looks like this: {"leader":"John Smith","leader_id":"asldfkj234234324asldkfs234","resource_uri":"/api/event/38001"} Instead when I ...
1
vote
0answers
119 views

Not able to parse json output from DJango view in jquery autocomplete

I have a tastypie based REST api developed and it returns proper JSON Following is the JSON returned if I start typing mou in the city text box which is auto complete (JQuery AutoComplete) {"meta": ...
0
votes
2answers
259 views

Using Dojo Grid with REST (tastypie)

I am experimenting with Dojo, using a DataGrid/JsonRestStore against a REST-service implemented using Django/tastypie. It seems that the JsonRestStore expects the data to arrive as a pure array, ...
0
votes
2answers
224 views

JSON format error with tastypie JSON result

I have a problem with a Tastypie/Django JSON response in my Java Android code. I do GET http mehtod to an Tastypie API and I parse the httpresponse to JSON. The problem it's that when I create a ...
1
vote
1answer
3k views

No JSON object could be decoded - tastypie - curl

I was following the tastypie tutorial word for word until i reached the post part: http://django-tastypie.readthedocs.org/en/latest/interacting.html#creating-a-new-resource-post When i run this ...
1
vote
1answer
1k views

Reverse relation ToManyField Tastypie

I have two resources (Tastypie), one of which has a ToManyField field: class SongResource(ModelResource): class Meta: queryset = Song.objects.all() resource_name = 'song' ...
1
vote
1answer
382 views

How do I make tastypie accept a JSONField?

I'm getting a "BAD REQUEST: '' is not a valid JSON string." when I try to post data to my tastypie API. The API consist of a ModelResource which is based on a model having a JSONField. The JSONfield ...
3
votes
2answers
577 views

django tastypie only fetch a particular field of a particular object

In tastypie my url: /api/v1/course/1/?format=json gives the following json: { created_on: "2012-02-27T08:00:54", description: "this is course 1", id: "1", resource_uri: "/api/v1/course/1/", subjects: ...
0
votes
1answer
748 views

django tastypie manytomany field POST json error

Here are my resources: class CourseResource(ModelResource): subjects = fields.ToManyField('core.api.SubjectResource', 'subjects', full=True) class Meta: queryset = ...
6
votes
4answers
2k views

Django-tastypie. Output in JSON to the browser by default

I see 'Sorry, not implemented yet. Please append "?format=json" to your URL.'. I need always append string "?format=json". Can I make a output in JSON by default? Regards, Vitaliy
2
votes
2answers
234 views

sort by count in json

I'm using tastypie to create json from my django models however I'm running into a problem that I think should have a simple fix. I have an object Blogs wich has Comment object children. I want to ...
0
votes
1answer
526 views

tastypie dehydrate child resource field

I just discovered tastypie and I think it's awesome. But I'm having some trouble massaging the output of my json. For example, I have something like this: ... class UserResource(ModelResource): ...
1
vote
1answer
359 views

Best Practices in Retrieving Related Data in a REST API

So I have a REST API in which I Have a resource in which other resources are linked to (related models, in programming point of view). So how I am doing it right now is that whenever I request for a ...