Tagged Questions
2
votes
0answers
14 views
Tastypie: same query than in views but no matches
I'm using this query in tastypie resource but i didn't have any result:
In the views i have the same query and it's working, i don't understand why Tastypie doesn't get my posts.
I get "No Post ...
0
votes
0answers
19 views
Tastypie - unicode escape error
I have some problem with adding tastypie to installed apps (I'm not importing anything from tastypie in any module). When I use Python 3.3 I got an error: SyntaxError: (unicode error) 'unicodeescape' ...
0
votes
1answer
12 views
Django Tastypie - using slug IN ADDITION to Id
I want to use both a slug and id to access my resources, so that the following urls would both point to the same resource
http://site.com/api/resource/this-is-the-slug
http://site.com/api/resource/35
...
1
vote
1answer
17 views
How to reload a page on change in server database
I'm using tastypie + django + backbone.js . My application should be usable by more than one user at a time.
What I want to do is to show all users "live" changes on the database without having the ...
0
votes
0answers
8 views
errors when using tastypie resource in view
here is my resource:
class ImageResource(ModelResource):
album = fields.ForeignKey(AlbumResource, 'album')
upload_by = fields.ForeignKey(UserResource, 'upload_by')
class Meta:
...
0
votes
0answers
6 views
Does tastypie swagger have built-in Authentication?
Is there a way to get swagger to use the login_required decorator? I have it on several views:
from django.contrib.auth.decorators import login_required
@login_required
def index(request):
pass
...
0
votes
0answers
9 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
45 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
42 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 = ...
2
votes
2answers
32 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
17 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
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
35 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
20 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
33 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
38 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
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
1answer
45 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
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
30 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
24 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
51 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
38 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
38 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
23 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
40 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
28 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
26 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
1answer
41 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
159 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
45 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
68 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
52 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
36 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
51 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
41 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
112 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
28 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
19 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
97 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)
...



