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.
I've just found one tutorial at http://blog.carduner.net/2010/01/26/django-piston-and-oauth/. Hope this would help someone.
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"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With