Tastypie is a reusable Django App and is suitable for providing an API to any application without having to modify the sources of that app.
1
vote
0answers
154 views
Tastypie - Nested resources are updated instead of created on POST
I am trying to POST a resource that consists basically of a list of child resources. Here are my resources:
class MovementResource(ModelResource):
transactions = ...
0
votes
1answer
38 views
How can I distinguish a detail or list REST method in tastypie
How can I find out if a GET method is requesting a detailed resource (example.com/api/v1/entry/1/) or a listing (example.com/api/v1/entry/)
What I am trying to do is to record how many times a detail ...
0
votes
2answers
73 views
many to many relation does't be unique when I use intermediate model.
I use intermediate model for "ManyToManyField using the through"
Normally,If I don't use intermediate field, the m2m relation will be unique and can't have the duplicated data.
After I use ...
1
vote
1answer
245 views
ForeignKey on Tastypie REST - The model '' has an empty attribute
I need to list the working hours of each employee, but i'm getting:
The model '' has an empty attribute 'work_journey' and doesn't allow a null value.
on:
/rest/tastypie/employee/?format=json
...
1
vote
1answer
133 views
RKPaginator Params
how can I use the "RKPaginator" with a custom "page paramter? My API doesn't provide a "page" param, it uses a pattern like this for pagination:
...
0
votes
0answers
130 views
Django tastypie post method http 501 error
I am getting http error 501 when I try to post to my api. I can't really find out why this error occurs.
Post method
send = post("http://127.0.0.1:8000/api/v1/user/vip_add/",
...
0
votes
0answers
90 views
django tastypie - building reverse urls in get_resource_uri, not api_name related
I have two resources, not nested with each other, and I need to forge a resource_uri of one resource within another resource. And the former has a non-standard field used as a pk, so the ...
0
votes
1answer
76 views
Restkit: How to get and map data from multiple source
I'm currently working on iOS Application with RestKit 0.20 to access data from Tastypie API.
And I am trying to get feeds data from URL like this
/api/v2/feed/?format=json
Then I will get array of ...
0
votes
1answer
49 views
reason to subclass your own resouce for tastypie
I've seen test codes where custom resources are further subclassed.
But it was for the test sake, not for any real use.
Why would anyone want to subclass a resource for obvious reason(but ...
0
votes
1answer
193 views
How to use api key authentication by django tastypie?
From the tastypie tutorial:
from django.contrib.auth.models import User
from django.db import models
from tastypie.models import create_api_key
models.signals.post_save.connect(create_api_key, ...
0
votes
1answer
135 views
How to turn off csrf in tastypie post?
When I have session authentication on, according to:
https://django-tastypie.readthedocs.org/en/latest/authentication_authorization.html
I need csrf.
How can I temporarily turn it off?
I see something ...
1
vote
2answers
179 views
how to use backward relation in django tastypie
this is my model
class Nisit(models.Model):
and this
class Page(models.Model):
followingNisit = models.ManyToManyField(Nisit,blank=True)
this is my resource
class NisitResource(ModelResource):
...
2
votes
1answer
225 views
Why isn't tastypie easily usable by other parts of my service? I have duplicate codes in tastypie resource and my core service
I spent whole week to integrate tastypie into my project and now I can't stop think 'why did I do it'.
I'm using django and tastypie(REST framework) but my question could be applied to other ...
0
votes
1answer
69 views
how to use tastypie reverse relation
When I do something like this http://example.com/api/v1/nisit/?format=json. I will get this error "The model '' has an empty attribute 'page' and doesn't allow a null value."
I want to use reverse ...
0
votes
1answer
34 views
Overriding get logic in tastypie
Basically, I would like to log each call for specific object, lets say I have an objectA and objectB, whenever objectA is requested I want to increase counter of objectA in database. I am thinking ...
0
votes
1answer
33 views
subclassing Resource but uses 1 url for the resources in tastypie
Suppose I have MediaResource and two related(subclassed) resource as below.
class PopularMediaResource(MediaResource):
def get_object_list(self, request):
return ...
0
votes
1answer
199 views
Using tastypie api from other views
I am calling tastypie api from normal django views.
def test(request):
view = resolve("/api/v1/albumimage/like/user/%d/" % 2 )
accept = request.META.get("HTTP_ACCEPT")
accept += ...
0
votes
0answers
146 views
Django tastypie, Multiple urls for a single Resource's list
This is going to be a long post, please bear with me.
I'm converting regular django-views to tastypie based views.
I had many image-list related views. (about dozen of them)
I'm showing two of ...
0
votes
0answers
60 views
RESTful api for like/unlike
I modeled like as a DB table
class UserLikeAlbumImage(models.Model):
user = models.ForeignKey(User)
album_image = models.ForeignKey(AlbumImage)
created_at = ...
0
votes
1answer
66 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) ...
1
vote
1answer
76 views
Creating vs Modifying in backbone.js
This is my first application using backbone and REST API, I'm a bit confused with some specific scenarios when it comes to creating-editing. So if the model exits on server, it will EDIT, if it ...
0
votes
2answers
58 views
Custom logic in tastypie
where can I put custom logic or which function should I overload to add custom logic in tastypie. For example: want to return CustomObject which contains name in uppercase, but before returning I want ...
1
vote
1answer
26 views
sending notifications when accessing api page
When a user add a comment to an image,
some users including the author of the image gets notified via Push notification.
I had it working in a regular view.
Now I'm adopting tastypie framework, and ...
2
votes
1answer
70 views
Do I want most regular views to be converted to tastypie APIs?
I'm converting regular django views to tastypie apis.
(My question is not specific to tastypie, using any rest-framework would have raised the same question)
I see people use tastypie even for ...
2
votes
3answers
336 views
How to use django-debug-toolbar for django-tastypie?
django-debug-toolbar needs its output to be html, but django-tastypie's default output format is json.
I tried sending http://localhost/api/v1/resource/?format=html but it says Sorry, not ...
0
votes
0answers
25 views
Filter tastypie API result using myModel__attributeName
How do I filter API results by a related model attribute using Tastypie?
and others show using URL such as /api/events/job__product__alias=something
I feel its ugly to hardcode job__product__alias in ...
0
votes
0answers
56 views
How to convert this view to use tastypie?
I have many 'filtering/sorting' criteria for image, currently I have different views for each of them.
Since I'm trying to use tastypie where possible, I wonder if I could indeed use tastypie for my ...
1
vote
1answer
144 views
tastypie custom fields
User and UserProfile is related with 'OneToOneField'
I have fields = [] to suppress all other fields listed in the dehydrate method,
but it doesn't work.(shows all the fields in the UserProfile ...
0
votes
0answers
90 views
Using backbone with tastypie REST api behind SSL?
I have a backbone app served by Django over https.
The API is powered by tastypie.
The Django app has middleware that redirects all http requests to the https SSL endpoint.
The backbone app only ...
0
votes
2answers
34 views
Can I have business logic to check if a resource is expired and generate new ones before I return in tastypie?
My models have "created" timestamp on them. And they expire after a day and should be re-created.
How can I have code that when client tries to GET the resources from TastyPie API, I check if the ...
0
votes
1answer
235 views
Tastypie foreign key validation on POST
I'm having a really hard time figuring out where the best place to do complex error validation in tastypie is.
I have a ModelResource
class CommentResource(ModelResource):
object = ...
1
vote
0answers
80 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 ...
5
votes
1answer
156 views
How to get django-simple-history work with Tastypie?
I need to store full history of changes made to objects. I find django-simple-history very appealing but it does not work with django-tastypie. If I send data to API using PUT (update the object), the ...
0
votes
0answers
205 views
Use django-oauth-plus with Tastypie
I try to use tastypie with django-oauth-plus. I follow wiki page of django-oauth-plus: http://code.larlet.fr/django-oauth-plus/wiki/Home and set resource authentication in tastypie to ...
0
votes
1answer
97 views
django-tastypie popup oauth like twitter
I can't find django-tastypie example, how to make sign-in popup like twitter oauth.
Mayby django-tastypie have example or tutorial how i can make it?
Thank you!
0
votes
0answers
22 views
POSTing multiple records
I'm using version 9.11 and am wondering is there a way to create multiple records of the same resource with a single post request.
Thanks!
C
1
vote
1answer
129 views
Cannot resolve field id django tastypie mongoengine
that seems this error is not depend on my code
i try using mongodb and mysql together without using django-norel
{"error_message": "Cannot resolve field \"id\"", "traceback": "Traceback (most recent ...
0
votes
1answer
36 views
Tastypie Urls and Filters
I would like to use tastypie with some slightly different urls. I would like them to be like this:
/api/v1/city/London/make_default
/api/v1/city/Paris/make_default
/api/v1/city/Singapore/remove_city
...
0
votes
1answer
192 views
Managing X-HTTP-Method-Override with tastypie in Heroku?
I'm trying to use the header: X-HTTP-Method-Override: PATCH (as stated in the Tastypie Docs , just search for X-HTTP-Method-Override there) so that I can simulate a PATCH (Not supported in heroku) ...
1
vote
0answers
185 views
backbone-tastypie and backbone.offline
I have a tastypie API and now I'm playing around with backbone.js . To get both play together nicely I use backbone-tastypie.
This works very well.
Now I want to add offline functionality by using ...
1
vote
1answer
264 views
IntegrityError: column user_id is not unique in django tastypie test unit
I have an estrange error testing a resourcemodel in tastypie.
I have this test
class LocationResourceTest(ResourceTestCase):
# Use ``fixtures`` & ``urls`` as normal. See Django's ...
0
votes
2answers
110 views
tastypie - disable nested objects creation
When i'm creating a new resource with a foreign relation, specified as, i.e., {"pk": 20}, i get a new unwanted FK-item created.
I have Order model class with a relations to the Language model, so ...
2
votes
2answers
169 views
Get authenticated user in django-tastypie
I'm just starting with Python and Django, and using tastypie to create a RESTful API.
I need to calculate a field of a resource based on the authenticated user, I plan to override the ...
0
votes
1answer
89 views
Django: Testing app causes Tastypie error
I am trying to test my Django app via
python manage.py test project
but I get the error message that
django.db.utils.DatabaseError: relation "tastypie_apiaccess" already exists
How is that ...
2
votes
1answer
346 views
How to filter ToManyField of django-tastypie by request.user?
I'm building an API with tastypie for a django app for data based on the user. The resources are like this:
class PizzaResource(ModelResource):
toppings = fields.ToManyField(
...
1
vote
1answer
111 views
handling multiple query parameters in tastypie
How can I handle parameters like in www.www.ww/api/user=XXX&comment=XXX&friend=XXX style queries(multiple parameters), couldn't found in documentation. (maybe didn't read well)
0
votes
3answers
106 views
In Tastypie, what is the right way to override Resource.is_authorized() to implement row-level permissions
I've added row-level authorization to a Tastypie Resource as follows:
from tastypie.exceptions import ImmediateHttpResponse
from tastypie.http import HttpUnauthorized
class ...
0
votes
1answer
110 views
Django basic authentication in functional View
I am looking to apply an Basic Authentication mechanism to the functions in my view functions.
I have some view functions that return JSON data via a template. If I visit my app via a webrowser, I ...
0
votes
1answer
361 views
Django Tastypie “ToManyField” in “parent” resource seems to break POST to chile resource
I am using Django 1.4.3 and TastyPie 0.9.11.
I have the following two django models:
class Event(models.Model):
organizer = models.ForeignKey(User, related_name='Organizador')
store = ...
0
votes
0answers
30 views
Can I filter on __in and __contains for same field?
I am doing some ajax filtering in my webapp. People can type in arbitrary strings to filter on. For instance, if I have 3 records with field name equal to:
apple
apples and pears
apples and ...

