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.
0
votes
0answers
5 views
Populate TastyPie Field With Different Resource Content During Hydrate?
How can I best populate a field in a TastyPie resource with the contents of another record during the hydrate process?
I have the following hydrate function defined in a resource to populate the ...
1
vote
0answers
23 views
tastypie do post in a manyTomany through table relation
Hope someone can help me!! :)
I followed this thread django-tastypie and many to many "through" relationships and I did successfully create a manytomany relationship through a table.
...
0
votes
1answer
21 views
Django tastypie and backbone album app?
I'm building an album app in django, I have two django model
class Album(models.Model):
name = models.CharField(max_length=100)
family = models.ForeignKey(FamilyProfile)
created_by = ...
0
votes
0answers
3 views
Tastypie fetches all columns in table
When I exclude fields like this:
class UserResource(ModelResource):
class Meta:
queryset = User.objects.all()
excludes = ['email', 'password', 'is_active', 'is_staff', ...
0
votes
0answers
8 views
Tastypie specifying related foreign fields in Resource
I'd like to be able to specify the related field names directly in the resource. But the Meta.fields does not seem to support double underscore.
I know you can create another resource and have the ...
0
votes
0answers
38 views
add() argument after * must be a sequence, not Result
Models.py
class Result(models.Model):
host = models.CharField(max_length=200)
type = models.CharField(max_length=1, choices=TYPE_CHOICES)
active = ...
0
votes
1answer
14 views
Tastypie get latest record
Instead of returning multiple objects when the ID isn't set. I'd like it to return only one, the latest.
# return latest entry
/api/entry/
{'id': 2, 'foo': 'bar', ...}
# return specified entry
...
0
votes
0answers
9 views
I want an EmbeddedListField of comments to show up only when I 'GET' a single post and not when I 'GET' a list of posts
I have a mongodb document 'Post' which has EmbeddedListField of 'comments'. I'm using tastypie to build the API layer and I want the comments to be listed with their body fields only when a single ...
2
votes
2answers
29 views
Conditionally Showing All or Some Fields from Single TastyPie Resource
Can I use a single TastyPie resource and conditionally have it return all or a subset of columns?
I have an employee database, which I can pull a full record via: /api/v1/employee/. But certain data ...
0
votes
1answer
15 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
25 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
14 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
34 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
18 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
29 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
34 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
34 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
36 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
30 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
31 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
65 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
24 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
44 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
23 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
35 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
21 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
47 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
37 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
37 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
22 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
36 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
27 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
17 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
25 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
28 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
40 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
155 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
42 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
20 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 ...
2
votes
1answer
64 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
22 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
49 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
35 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
17 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
28 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
38 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
45 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 ...



