Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any good tutorials on using OAuth with Piston? [closed]

Tags:

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.

like image 761
Hank Gay Avatar asked Nov 28 '09 20:11

Hank Gay


2 Answers

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

like image 131
xaralis Avatar answered Oct 06 '22 23:10

xaralis


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"

like image 44
Roel Kramer Avatar answered Oct 06 '22 23:10

Roel Kramer