The piston tag has no wiki summary.
1
vote
0answers
23 views
django piston recursion with OneToMany relationship handlers
No matter what I tried, I cannot resolve the recursion with request handlers for my simple OneToMany relationship, let's say Father 1 : N Sons
FatherHandler shall return sons_set (list of sons) in ...
0
votes
1answer
51 views
Tastypie query limit
Is there any way to handle query per user limitations with tastypie API library ?
I would like for example to limit all users to 200 queries per day.
I looked all over the documentation and only ...
2
votes
1answer
102 views
Django-piston. How to serialize to JSON objects that are not Model subclasses?
I'm new to the whole python world so this is probably a newbie question.
I'm working with django + piston and so far created a few urls that are returning my django models in JSON quite well. I ...
0
votes
2answers
160 views
“Invalid signature”: oAuth provider with Django-piston revisited using Scribe as a client
So while working through an implementation of OAuth using Django-Piston I encountered the error mentioned here: "Invalid signature": oAuth provider with Django-piston
The solutions posted ...
0
votes
1answer
1k views
how to filter csrfmiddlewaretoken while posting
I am planning to make generic CRUD using django-piston. One of my sample code has following
class TaskHandler(BaseHandler):
allowed_methods = ('GET','POST',)
model = Task
def read(self, name=None):
...
0
votes
2answers
183 views
Heroku + Django + Piston
I'm using Heroku with Django and using Piston for API stuff.
We migrated from plain Amazon EC2 to Heroku. Everything works (every aspect of the website) except for some of the API calls.
When I run ...
1
vote
1answer
115 views
Django-piston takes huge response time in read
I have recently (a newbie rather) been using django-piston. When returning result from the read method, it takes a huge amount of time to generate/send response (for like 30,000 records with 6 ...
0
votes
1answer
267 views
django piston HTTP POST with XML data does not work
I have implemented API with django piston in which its take data from sms/mms . For MMS case i have to post XML data with image and others . Here is my code snippet on handlers.py
def create(self, ...
1
vote
2answers
188 views
Piston returns HTML instead of JSON
Im working with Django and Piston and I created the following Handler:
from piston.handler import BaseHandler
import datetime
import json
class NotificationHandler( BaseHandler ):
allowed_methods ...
1
vote
1answer
290 views
Call piston handler in django view function
I'm using django piston to implement my RESTful api. I already implemented an api which is
/api/[uuid of user]
will give all the information related to uuid of user.
However, I also want to ...
0
votes
0answers
609 views
Django - Piston - Handler outputs RelatedManager object instead of the actual related object
I hope someone can answer something for me. I have an Entry
model that has a many to one relationship with a Day model. So a
single Day has many Entries.
class Day(models.Model):
name = ...
7
votes
1answer
2k views
What is the right way to write a django-piston client?
I've been reading a lot on django-piston and using to to make an API for an app I'm development, but I'm getting hung up on the client side of the world. I've written the handlers and uri mappings, ...
1
vote
1answer
679 views
Django-Piston - I Can't POST on a model with a ForeignKey
I'm trying to set up piston on my Django project. I ran into a brick wall when I tried to POST (create) a new entry on a model that contains a ForeignKey: location.
Here is the exact error I receive:
...
2
votes
1answer
2k views
basic http authentication with django-piston
I'm a newb to this. I've seen the code snippet at the official site (pasted below).
The problem is how do I deploy this to the server ? Where do I set the username and password credentials ? In the ...
0
votes
1answer
91 views
unusual django admin behavior when storing string values
Using django trunk r13359 and django piston, I created a small restful service that stores string values.
This is the model I am using to store strings:
class DataStore(models.Model):
data = ...
0
votes
2answers
1k views
“Invalid signature”: oAuth provider with Django-piston
I'm working with django-piston to attempt to create an API that supports oAuth.
I started out using the tutorial at:
http://blog.carduner.net/2010/01/26/django-piston-and-oauth/
I added a consumer ...
1
vote
2answers
175 views
Making REST calls only available to local applications?
Suppose I have a url like
http://mysite.com/get-users
which returns a JSON object of all users. But, I don't want anyone (or any bots) to be able to go to this url to fetch this information. I ...
0
votes
1answer
1k views
Unable to HTTP PUT with libcurl to django-piston
I'm trying to PUT data using libcurl to mimic the command
curl -u test:test -X PUT --data-binary @data.yaml "http://127.0.0.1:8000/foo/"
which works correctly. My options look like:
...
3
votes
2answers
376 views
python list mysteriously getting set to something within my django/piston handler
To start, I'm very new to python, let alone Django and Piston.
Note: (I've updated this since the first two suggestions... you can view the old post in txt form here: ...
5
votes
2answers
2k views
Django Piston: How can I exclude nested fields from handler results? Is it even possible?
Before the question, the background:
I am putting the finishing touches on an API I have written for a Django app utilizing django-piston. The API is able to search by request or IP address which are ...
6
votes
3answers
1k views
Piston customize response representation
I am using piston and I would like to spit out a custom format for my response.
My model is something like this:
class Car(db.Model):
name = models.CharField(max_length=256)
color = ...
5
votes
1answer
2k views
How do I force git to think a file is unmerged?
I want to make changes to a file in my repo, then force git to believe the file is unmerged and show up in git status like so:
# Unmerged paths:
# (use "git reset HEAD <file>..." to unstage)
...
25
votes
2answers
5k views
Any good tutorials on using OAuth with Piston?
I've looked at the relevant section of the Piston documentation, but it only seems to focus on how to turn it on, not what it would look like for clients or how to test it to verify it's working. The ...
3
votes
2answers
1k views
How do I update an already existing row when using ModelForms?
Greetings,
I have a question on how to update an existing row in my database when one of the fields is my primary key. I am using ModelForm and Django-Piston - my main goal here is to have RESTful ...
4
votes
2answers
2k views
Is Piston ready for OAuth?
I tried using Piston for a simple API, hoping to use its OAuth support. But the first time I hit the endpoint after enabling OAuth, I got an error:
TemplateDoesNotExist: oauth/challenge.html
and ...
0
votes
2answers
389 views
piston git support?
I found piston seems a decent tool for managing rails plugins, but when I try to do piston convert for my project with git based plugins, it just went dead completely and seems its trying to look for ...
