python - django register user with django-facebook -
ok see saying use django-facebook, , says can want. have installed on app , example page works, how register user it? apart installation rest of docs seem autogenerated , have yet find step step guide how register user on site using django-facebook.
here working example of facebook auth django.
facebook uses oauth2 federate user logins. oauth2 authorization step-by-step consists of
- create authorization token calling request-token url consumer keys
- send user authorize url token created , callback url
- once authorized user redirected callback url auth-token
- convert auth-token access token @ request-token url
- save access token , use make authorized requests
Comments
Post a Comment