Is this concept of Oauth2 workflow for sinatra + angular.js + custom provider correct?

眉间皱痕 提交于 2020-02-29 00:01:20

问题


I want to build three example apps. One will be a sinatra oauth2 provider and second will be rails app with angular.js on frontend and rails on backend and third with sinatra on backend and angular.js on frontend.

Our Rails/Sinatra app will be authenticate users using satelizer and our custom provider.

These is our Oauth2 workflow right now.

  1. Using Satellizer we get the authorization code from provider. We send this code to our backend.
  2. In backend using this authorization code, secret key and other params, we send an request to provider to get an access token.
  3. Using this obtain access token we call '/me' action to get an uid, email and other user attributes from provider.
  4. In the same action we parse the response body and we find or create user based on uid.
  5. We are wondering about this step which should somehow set the user's authentication token.
    • store the provider access token in user database record.
    • generate new authentication token and change it on every request
  6. Generate JWToken with user uid and token and send it back to satellizer.
  7. Then on each request Satellizer include Bearer JWToken in header. After recive request our backend verify header token stored in database and call sing_in method in our case devise(sign_in, store: false) maybe in sinatra app we will use warden.

What do you think about this concept? Maybe we are missing something. These is our first oauth2 authentication implementation and we are worried about it.

来源:https://stackoverflow.com/questions/25455132/is-this-concept-of-oauth2-workflow-for-sinatra-angular-js-custom-provider-co

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!