Tagged Questions
0
votes
1answer
65 views
returning list data on POST in django-tastypie
I know always_return_data = True makes tastypie return object after creation.
I'd like to return a list of data upon object creation.
(when a user like a post, I return all likes-info for the post) ...
3
votes
1answer
189 views
Django - Tastypie POST (update) causing 409 CONFLICT
I am doing an assignment where I need to interact with a Tastypie API. I have no control over the API, I have just been given the details of it and told it is set up to allow GET's, POST's and ...
2
votes
1answer
649 views
How I can create an object in Tastypie API?
I am creating a Tastypie API for my Django project. I have a models in django models.py like this:
class User(models.Model):
nick = models.CharField(max_length = 255)
email = ...
1
vote
1answer
507 views
Posting data to create related Tastypie resources simultaneously?
Given two related Django models A and B in a OneToMany relationship:
models.py
class A(models.Model):
name = models.CharField(max_length=5)
class B(models.Model):
name = ...
13
votes
1answer
3k views
Returning data on POST in django-tastypie
I consider it a standard that an object-creating function returns the newly created object.
So, any idea how do you do that in tastypie? When I send the POST request, the object is created, I get ...
