Tagged Questions
The piston tag has no wiki summary.
23
votes
2answers
3k 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 ...
5
votes
1answer
1k 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, ...
4
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)
...
4
votes
2answers
1k 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 ...
3
votes
2answers
333 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: ...
3
votes
2answers
1k 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 ...
3
votes
2answers
459 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 ...
2
votes
1answer
1k 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 ...
2
votes
2answers
746 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 = ...
1
vote
2answers
148 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
0answers
22 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, ...
0
votes
2answers
60 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 ...
0
votes
1answer
37 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
330 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 = ...
0
votes
1answer
453 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:
...
0
votes
1answer
69 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
928 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 ...
0
votes
1answer
832 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:
...
0
votes
2answers
365 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 ...