up vote 23 down vote favorite
11
share [g+] share [fb]

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 example only seems to use HTTP Basic and curl. Finally, Ned Batchelder's question makes it look like a tutorial is in order. Thanks.

link|improve this question

I'll write one if I figure it out. Back to searching. – skyl Nov 29 '09 at 4:31
I am also interested in this. I will return if I make any progress. – jathanism Jan 28 '10 at 4:49
feedback

2 Answers

up vote 15 down vote accepted

I've just found one tutorial at http://blog.carduner.net/2010/01/26/django-piston-and-oauth/. Hope this would help someone.

link|improve this answer
The timing on this answer couldn't have been any better. Thank you! – Bryan Veloso Mar 27 '10 at 19:54
The tutorial only deals with how to set up Piston in your Django app. The question specifically asked how it would work for a client, and how to test it in a better way than curl (for example, in your Django unit tests). I'm looking for precisely that, and this answer doesn't cover it at all. – Adrian Ghizaru Apr 2 '11 at 18:28
feedback

I did benjamin dell; at what point are you? The endless loop? In that case; add this function to yourapp.api.views:

# Create your views here.
from django.shortcuts import render_to_response
from django.template import RequestContext

def request_token_ready(request, token):
    error = request.GET.get('error', '')
    ctx = RequestContext(request, {
        'error' : error,
        'token' : token
    })
    return render_to_response(
        'piston/request_token_ready.html',
        context_instance = ctx
    )

and set settings.OAUTH_CALLBACK_VIEW = "api.views.request_token_ready"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.