Tagged Questions
0
votes
1answer
12 views
how to delete tastypie model resource index
I'm implementing a rest api using django-tastypie. My api resource is defined as follows:
class AddressResource(ModelResource):
class Meta:
resource_name = 'address'
queryset = ...
1
vote
1answer
19 views
Authenticating Developers with APIKey and Users with BasicAuth/OAuth
I've looked around for this but can't seem to find a canonical answer. I'm trying to follow best practices. Maybe I'm thinking of it the wrong way.
I'm thinking of my API users as two different ...
0
votes
0answers
34 views
Django-Tastypie Return Multiple Object Types In A ModelResource Response
I'm trying to return multiple object types in a response. Specifically I would like to return the query that produced these results to the client. This is especially useful in say mobile applications, ...
1
vote
1answer
91 views
Django Tastypie Many to Many (self) field update using a PATCH or PUT request?
I have this model:
class UserSub(models.Model):
user = models.OneToOneField(User, related_name='userSub')
amigos = models.ManyToManyField('self', null=True)
title = models.TextField()
...
0
votes
1answer
132 views
django-tasty-pie turn char field to JSON
I'm using JSONfield to store some JSON formated data in one field. But when I go to my API which build with help of tasty-pie it returns that jason as a string not a nested JSON as I expected.
...
3
votes
1answer
155 views
Self Documenting APIs built on Django-Tastypie
Im using django-tastypie and I'm very happy with it. But I really want to get the self documenting api feature from Django Rest Framework.
What solutions exist (or have people built) to get this kind ...
4
votes
1answer
221 views
Django Tastypie slow POST response
I'm trying to implement a Tastypie Resource that allows GET & POST operations following a per user-permission policy, the model is pretty simple (similar to the Note model in Tastypie ...
0
votes
2answers
114 views
Session based rollback through tastypie API call example code?
Lets say I have django.contrib.sessions.middleware.SessionMiddleware installed in django and I'm using SessionAuthentication class for API authentication in tastypie. Within a session I'm doing some ...
1
vote
1answer
101 views
Limit number of ForeignKey elements in list view
I have a resources like these:
models.py
class Place(models.Model):
id = models.CharField(max_length = 256, primary_key = True)
name = models.CharField(max_length = ...
0
votes
2answers
54 views
tastypie path to resources
I'm setting up related fields in my tastypie api.
I have this in my api.py file:
class PeopleResource(ModelResource):
event_id = fields.ForeignKey(EventResource,'event', full=True)
answer_link = ...
0
votes
0answers
127 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/",
...
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
195 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
89 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
1answer
151 views
Tastypie Nested Resource URIs
I'm creating an API where I would like to POST and GET the children objects from the parent object. For example:
GET challenge/1/solutions = [Listof Solutions] filtered with challenge_id=1
GET ...
0
votes
1answer
104 views
How create a model resource and a related many to many resource on a single POST?
Hi i am using tastypie to expose a rest api on a project, and got stuck on how to implement the endpoint of a resource, so here's my problem:
i have the following models,
class ...
2
votes
1answer
129 views
Generating a thumbnail for a Tastypie API with easy-thumbnails
I'm trying to use the dehydrate method to generate my thumbnail like so:
class PostResource(ModelResource):
user = fields.ForeignKey(UserResource, 'user')
class Meta:
queryset = ...
2
votes
2answers
84 views
django tastypie support for mashery iodocs?
Mashery iodocs is a tool for documenting API. It needs two configuration json objects to run. It would be nice to have this objects generated automatically by tastypie. Tastypie can generate json with ...
2
votes
1answer
166 views
Django Tastypie PATCH throws “'Bundle' object is not iterable” error
I'm working on an API and for one of my endpoints I want to be able to make partial updates.
Here is the tastypie resource
class StoryResource(ModelResource):
authors = ...
0
votes
1answer
136 views
Django Tastypie : How to initiate a variable every time an api call is made?
I have two models :
class Category(models.Model):
name = models.CharField(max_length=50)
and
class SubCategory(models.Model):
sex = models.CharField(choices=SEX, blank=True, max_length=5) ...
0
votes
1answer
531 views
How to use Tastypie to wrap internal functions
I have a Django web application, which allows users to do stop/start/install_pkg on a remote server over HTTP from UI. Django web app has start / stop / install_pkg functions already implemented which ...
5
votes
2answers
561 views
Tastypie : Authentication for GET and Anonymous for POST
I use Django/Tastypie to manage my user collection.
Is it possible to allow anonymous users to POST in the API (when creating a new user at some endpoint) and restrict authenticated users to GET only ...
0
votes
1answer
102 views
How to get rid of the version information in API url in tastypie django?
I am creating REST based APIs for an app using Tastypie with Django. The problem is default API url in Tastypie contains version info in url patterns i.e.
...
0
votes
1answer
106 views
Security using Tastypie in Mobile Devices Best practices
Which is the best way to use Django / Python Tastypie to build and API for mobile devices?
What I want to do is:
People connection to some api.domain.com/dosomething/
I would like that people could ...
0
votes
2answers
182 views
Tastypie: Add meta codes to dispatch_list
How can I add custom fields (in this case, meta codes) to a dispatch_list in Tastypie?
1
vote
1answer
276 views
In django-tastypie, can choices be displayed in schema?
I am trying to figure out whether I can represent model field choices to clients consuming a tastypie API.
I have a django (1.4.1) application for which I am implementing a django-tastypie (0.9.11) ...
1
vote
1answer
306 views
Django Tastypie creating models several relations deep
I'm trying to use Django Tastypie to allow an implementor to POST/PUT data to create models that are related several levels deep. So POST something like this (as JSON) to create let's call it a Blob, ...
0
votes
1answer
283 views
Return Latitude and Longitude values from a PointField using tastypie
Using django-tastypie v0.9.11
django 1.4.1 and geodjango.
Before geodjango I used to save my lat and lng values straight into my model. Then when I'd call the API I'd just pull my values easily. ...
0
votes
0answers
217 views
Tastypie POST always creates resource
I am building an API using Tastypie.
I created a resource but for some reason whenever I make a POST request it ALWAYS creates a resource even when it returns with an error.
For example, I get the ...
1
vote
1answer
190 views
Tastypie Single Resource
I am writing an API with tastypie and I would like an API endpoint to only return 1 instance of a resource. The way I would like this to work is to enforce a parameter such as an ID.
For example, I ...
1
vote
1answer
336 views
Django Tastypie Prefix URL resource with slug
I am trying to build an API as the following:
api/v1/<client_slug>/track/expenses
However, I don't really have any data that I need returned at /clients, at least at this point, so I was ...
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 = ...
2
votes
2answers
845 views
django-tastypie PATCH gives me a “400 (Bad Request)”
I am running a Django site on Apache which is front'ed by Nginx instance to serve my static media.
I expose an API via django-tastypie to a model that I need to PATCH a field on. When I do local ...
1
vote
1answer
202 views
TastyPie - Override_urls ignores Authentication and Authorization
I have the following resource:
class MyUserResource(resources.MongoEngineResource):
class Meta:
...
authentication = MyKeyAuthentication()
authorization = ...
3
votes
1answer
921 views
Django Tastypie - Prepend URLs does not work
I tried to use the prepend_url() function similar to the search example in the tastypie cookbook. For some reason the browser returned just a 404 and nothing else happens...
0
votes
1answer
620 views
Tastypie - Accessing Field Data Through ForeignKey Field
I have a Tastypie resource (TaskImagesResource) which needs to override the obj_get_list function to return the correct data when a request is made to the API. I need to access properties of another ...
0
votes
2answers
127 views
Is it possible to disallow index of a resource with tastypie?
I want read to be visible on the api:
/api/resource/1
But not index:
/api/resource/
Is it possible with django-tastypie ?
1
vote
2answers
465 views
Tastypie error while updating - field has was given data that was not a URI, not a dictionary-alike and does not have a 'pk' attribute
I keep getting this error when i try to update my resource.
The resource I am trying to update is called Message.
It has a foreign key to account:
class AccountResource(ModelResource):
class ...
3
votes
1answer
250 views
Tastypie - Get list of objects being editted (PUT/PATCH)
I am trying to do authorization in away that only owners of the objects can edit them.
How can i get the ids of the objects being edited in the post call in my authorization method?
Eg: If someone ...
4
votes
2answers
2k views
Tastypie filtering with multiple values
I had a simple question on filtering in tastypie.
I want to filter with multiple values. For example:
/api/v1/message/?accountId=1,5,12
This doesnt work. Any idea how i can do this?
Do i need to ...
0
votes
1answer
752 views
Nested UserProfile in User resource django tastypie
I am using django tastypie and I'm trying to add a nested userprofile resource in my user resources:
My code:
Models (in APP_FOLDER/models.py):
class UserProfile(models.Model):
user = ...
1
vote
1answer
1k views
Django Tastypie, ManyToMany Saving Error
i got a problem when i'm saving an item, via tastypie api. (POST method)
Here is my api.py code.
from tastypie.resources import ModelResource, ALL, ALL_WITH_RELATIONS
from tastypie.authorization ...
0
votes
1answer
1k views
Django Tastypie User Registration
I am creating an API using Django and TastyPie. I am trying to register a user via a resource. I took most of my code from this question that has a similar goal:
How to create or register User using ...
0
votes
2answers
389 views
TastyPie and Django ORM - how tightly coupled are they?
Is it possible to develop an API in Django "TastyPie" in a way which doesn't tie it directly to a "single" Django ORM model? i.e. a call /api/xyz/ would retrieve data from "a", "b" & "c" into a ...
2
votes
1answer
248 views
How would I go about building an API converter?
I have multiple different APIs with different schemas serialised in XML or JSON which I need to output as a standardised schema.
Main features needed:
Serialisation to XML and JSON
Authentication
...
2
votes
2answers
395 views
django tsstypie. order_by queryset
Here is my models.py
class Picture(models.Model):
image = models.ImageField(upload_to='uploads/')
caption = models.CharField(max_length=140, null=True, blank=True)
uploaded = ...
2
votes
1answer
281 views
Analytics for tastypie
I am looking to add some sort of analytics to my Tastypie-powered API. I really enjoy Google Analytics for the regular web site however obviously it won't work for an API. How do you do analytics for ...
1
vote
1answer
770 views
Tastypie - How can authorize only the owner to edit a resource
I am creating my first API with tastypie and I would like to know how can I set that only owners can edit it's own resources.
Should I?
create a basic authentication like in this example
check if ...
0
votes
1answer
121 views
Best practice for tightly coupled classes for an API
I'm currently using django with tastypie. I need to implement an api for Questions and answers. I've created the following resources tied to the Question and Answer model respectively:
class ...



