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.
2
votes
1answer
18 views
Conditionally Showing All or Some Records from Single TastyPie Resource
Can I use a single TastyPie resource and conditionally have it return all or a subset of records?
I have an employee database, which I can pull a full record via: /api/v1/employee/. But certain data ...
0
votes
1answer
10 views
Django Tastypie, how to search throught multiple modelresource?
I'm looking for a way to add a 'generic' search throught some of my ModelResource.
Using a 'v1' api, I would like to be able to query some of my ModelResources allready registered with this kind of ...
0
votes
1answer
11 views
django tastypie alter model fetching
I'm trying to find a way to make tastypie return results that are a little bit different than the default ones. For example, by default the api returns the following:
{
created_at: ...
0
votes
1answer
13 views
Removing the list endpoint from a resource on tastypie
I have a Resource on my api that always return the logged-in user. The resource is read-only.
I wanted the list uri to act as the detail uri, and remove the detail urls.
So, /api/v1/user/ would ...
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
31 views
How can I retrieve a distinct list of objects for each pair of django users?
I have a private user to user messaging model. (Photographer is a ForeignKey to the Django User)
class Message(models.Model):
sender = models.ForeignKey(Photographer)
recipient = ...
0
votes
1answer
17 views
Tastypie - Linking to a “ForeignKey”
I have two legacy models listed below. The Library.libtype_id is effectively a foreign key to LibraryType when libtype_id > 0. I want to represent this as a ForeignKey Resource in TastyPie when that ...
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
1answer
27 views
how i use tastypie to enter data in mongoengine file field? [closed]
I want to enter data in MongoDB using tastypie. I am not able to figure out how to send image ie. filefield using tastypie?
I am using MongoEngine as ODM. I can see reference field, embedded document ...
0
votes
1answer
31 views
Update two models in a given resource tastypie
The problem statement is simple ,
2 Models : UserGames, UserHost
A post request is made by user to join a game then a record is created in UserGames, if Hosting parameter is passed in the request ...
0
votes
1answer
34 views
Tastypie annotation error “empty attribute…”
I'm using tastypie to create an API and I'm stuck trying to annotate a Sum total of decimals over a certain type. Each transaction has an associated bucket type and I'd like to group by bucket type, ...
0
votes
0answers
25 views
Filter Tastypie resource using OR logic
I'm trying to come up with the best way to express an OR query for a ModelResource filter.
I'm pretty sure I'll have to override ModelResource.build_filters() or ModelResource.apply_filters() with ...
0
votes
1answer
26 views
Tastypie building bundle with dictionary
According to the manual it should be possible
Given either an object, a data dictionary or both, builds a Bundle for use throughout the dehydrate/hydrate cycle.
So I threw this together using ...
0
votes
2answers
63 views
How can I implement blocking using Django-relationships?
I've been using django-relationships to allow users to follow each other. If Bob follows Joe. Bob will be able to see all of Joe's photos. However if Bob blocks John, John will not be Bob's photos.
...
0
votes
0answers
19 views
Access api response meta with RestKit 0.20
I'm fairly new to RestKit (and iOS for that matter). My app is using an API (based on tastypie) that returns a response like this:
{
meta: {
limit: 20,
offset: 0,
...
0
votes
0answers
9 views
How to retrieve posts from subscribed blogs filtering by username using Tastypie? (related Resources)
The users can subscribe to several blogs using a m2m relation or create collections of blogs to follow.
What is the best way to get only the posts (not the blogs, the meta should return a count of ...
0
votes
1answer
39 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
1answer
21 views
How can I get tastypie to return related table data in the response
I'm new to Django and I'm experimenting with using tastypie to create a simple API. I can't seem to figure out the proper way to show related information in one Resource from another.
Models.py
...
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, ...
0
votes
3answers
29 views
django tastypie - how to stop model creation when sending post request
I am doing like this:
def hydrate(self, bundle):
manipulate data here
Now, based on the data, I want to check whether its already available or not. And want to create object if it doesnt ...
0
votes
0answers
15 views
How to create new user and new django allauth social account when given twitter access token over api?
I just posted and subsequently figured out the answer to a similar question regarding Facebook, but Twitter seems trickier.
I have a mobile app that allows users to sign up via Twitter. Once I ...
0
votes
1answer
39 views
How to create new user and new django allauth social account when given access token over api?
I have a mobile app that allows users to sign up via Facebook. Once I receive the access token from FB, I send it to the Django backend.
But then what?
Is there a method inside of ...
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
34 views
Dynamically create Resources for multiple django models in tastypie
I need to expose multiple existing django models to tastypie. I got the basics covered with creating af ModelResource and registering it in urls.py. However, I would like to avoid writing Resource ...
1
vote
1answer
19 views
Get model object from tastypie uri?
How do you get the model object of a tastypie modelresource from it's uri?
for example:
if you were given the uri as a string in python, how do you get the model object of that string?
0
votes
0answers
28 views
Prepopulate fields with currently logged in user data using Tastypie and AngularJS
Im using Tastypie and AngularJS with Django and I want to make client side page, where there would be prepopulated forms with currently logged in users username, email etc. So I thought one way could ...
0
votes
0answers
21 views
Select/Update/Insert on TastyPie Bulk (PATCH) Request Based on Index?
Can I tell TastyPie to (in order) SELECT, UPDATE or INSERT a resource entry during a bulk (PATCH) insert?
The trick to the question is the UPDATE portion. By default TastyPie will
SELECT an ...
0
votes
0answers
16 views
django-tastypie SimpleCache not accepting arguments
I'm trying to implement the basic caching on Tastypie, however when I add in the SimpleCache, it can only be put in without arguments. i.e
cache = SimpleCache()
The following as recomended in the ...
1
vote
0answers
23 views
Efficient Multiple TastyPie Resource Updates Across Multiple Tables
What is the most efficient way to insert (or update) multiple records in a TastyPie resource, where multiple tables are being updated?
I have the following entry being sent via AngularJS:
var ...
1
vote
0answers
27 views
Tastypie: REST API where POST and GET resource format are different
I've created an API. GETting my resource gives:
{
category: {
id: "517ed1bff929f90e1152ad43",
name: "Test category"
},
cost: "Free",
description: "Lorem ipsum dolor ...
1
vote
1answer
36 views
Let tastypie client do CRUD without foreign key lookups
I'm using TastyPie to create a REST client/server for accessing some data about our system-level build post tests. I'd like the client to be able to ignore the fact that product is stored internally ...
0
votes
2answers
148 views
Fullcalendar, backbone.js, Cannot edit event
So, I think I am in over my head here. I am trying to get fullcalendar to work with backbone and django. I am still learning all of this but I can now make new events and save them via ...
0
votes
1answer
33 views
Tastypie Swagger with default configuration gives NoReverseMatch exception, says 'tastypie_swagger' is not a registered namespace
Pretty much as it sounds in the title.
I followed the instructions on https://github.com/concentricsky/django-tastypie-swagger
The install seemed to work, but when I go to the URL I set, I get a ...
0
votes
1answer
19 views
How to test django API with asychronous requests
I am developing an API using Django-TastyPie.
What API do?
It checks that if two or more requests are there on the server if yes it swap the data of both the requests and return a json response ...
1
vote
1answer
52 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 ...
0
votes
0answers
17 views
Django tastypie and posting related data using FormsValidation
I have a weird problem when posting data to the invoice resource. If product validation fails Invoice is still saved without failed product data.
What I want is that invoice is not saved until all ...
0
votes
0answers
46 views
Django TastyPie NotFound(“Invalid resource lookup data provided (mismatched type).”)
I'm getting the following error when posting data to my resource which I can't get to the bottom of. Any help would be appreciated.
Traceback (most recent call last):
File ...
0
votes
1answer
32 views
Retrieving parent url parameters from ajax call?
say I have a view at
url(regex=r'^(?P<slug>[-\w]+)/$'...)
and in the template of that view I have an ajax post to an api (via tastypie) at
url(regex=r'^post/$'...)
Is there a way in the ...
0
votes
1answer
16 views
Tastypie sign-in
I would like to create login resource but I can't grasp how to do it :(
I have my UserResource and I think it would be best with a LoginResource as the login method.
class ...
0
votes
0answers
25 views
Backbone collection.create always return error
I'm using tastypie on django backends, here is how I create a new model
addEdu:function(e){
e.preventDefault()
var form_data = {
user: ...
0
votes
0answers
34 views
How to test django tastypie api with asychronous requests
I am working on API which is built on tastypie.
what API do?
It checks that if two or more requests are there on the server, it swaps the data. After that it initially returns a chunked response and ...
0
votes
2answers
41 views
Django & TastyPie: request.POST is empty
I'm trying to do a POST using curl:
curl --dump-header - -H "Content-Type: application/json" -X POST --data '{"item_id": "1"}' http://www.mylocal.com:8000/api/1/bookmarks/
However, request.POST is ...
0
votes
1answer
37 views
Django Tastypie custom model method
I just start using Django with Tastypie in a Rest application with two models.
Parameters are snipped for brevity.
class Player(models.Model):
pseudo = models.CharField(max_length=32, ...
1
vote
1answer
77 views
How do I use an Django Rest Framework with API key per account (not user)?
For Django, both tastypie and django-rest-framework seem to be focused on API authentication/authorization/throttling per user. I want to expose an API that is per account, where an account might have ...
1
vote
1answer
24 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
18 views
Posting in several tastypie resources simultaneously
Here's what I'm trying to do :
The user creates an Event in my application. Here's the model :
class Event(models.Model):
name = models.CharField(max_length=40)
organizer = ...
0
votes
0answers
78 views
Django Tastypie Deserializing Multipart/Form-Data To Upload File
I am trying to upload files via a Multipart/Form-Data form and Tastypie API and am running into some issues:
My Model:
class Client(models.Model):
account = models.ForeignKey(Account)
...
1
vote
2answers
68 views
Django Tastypie add Content-Length header
I am quite new in Django development. I have a Resource and Model:
Model
class Player(models.Model):
pseudo = models.CharField(max_length=32, unique=True)
ModelResource
class ...
0
votes
2answers
56 views
Filter in django: the last post of each user
I have 2 models, Author and Post , how can I make a filter who can select the last post (by id field) of each Author in one only line?, the bad approach for me is :
authors = Author.objects.all()
...
0
votes
2answers
89 views
heroku, postgreSQL, django, comments, tastypie: No operator matches the given name and argument type(s). You might need to add explicit type casts
I have a simple query on django's built in comments model and getting the error below with heroku's postgreSQL database:
Traceback (most recent call last):
File ...



