Advertisement
Guest User

Untitled

a guest
Jul 27th, 2015
315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. http://127.0.0.1:8000/accounts/linkedin_oauth2/login/callback/
  2. http://127.0.0.1:8000/accounts/linkedin_oauth2/login/callback/my/
  3.  
  4. views.py
  5. def index(request):
  6. return HttpResponse("Hello, world. You're at the polls index.")
  7.  
  8. def getProfile(request):
  9. return HttpResponse("Hello, world. You're at the polls index.")
  10.  
  11. urls.py
  12.  
  13. url(r'^accounts/linkedin_oauth2/login/callback/$',views.index,name='index'),
  14. url(r'^accounts/linkedin_oauth2/login/callback/my/$',views.index,name='getProfile'),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement