0.0
No commit activity in last 3 years
No release in over 3 years
OmniAuth strategy for Quanto
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

omniauth-quanto

An Omniauth strategy for Quanto.

This repo is incredibly simple right now. Like described here we set up a basic OmniAuth strategy for Quanto where the OmniAuth library does most of the heavy lifting. The only things that are tailored here are the client options that point us to the right domain:

option :client_options, {
  site:               'http://tryquanto.com',
  request_token_path: '/oauth/request_token',
  access_token_path:  '/oauth/access_token',
  authorize_path:     '/oauth/authorize',
}

We also have a simple call to the /api/v1/me endpoint to get some of the basic credentials, but since a user currently only has an email and no other personal data or metadata, there isn't much to share.