Skip to content

strategy for authenticating to SberBusiness ID via OAuth

License

Notifications You must be signed in to change notification settings

insales/omniauth-sberbusiness

Repository files navigation

OmniAuth Sberbusiness

This is the unofficial OmniAuth strategy for authenticating to SberBusiness ID via OAuth. To use it, you'll need to sign up for an OAuth2 Application ID and Secret on the Sberbusiness Developers Page.

Installing

Add to your Gemfile:

gem 'omniauth-sberbusiness'

Then bundle install

Usage

OmniAuth::Strategies::Sberbusiness is simply a Rack middleware.

Here's a quick example, adding the middleware to a Rails app in config/initializers/omniauth.rb:

provider :sberbusiness,
  client_id: '11111111-1111-1111-1111-1111111111111111',
  client_secret: 'YOURSECRET',
  response_type: 'code',
  client_type: 'PRIVATE',
  client_options: { ssl: { client_key: client_key, client_cert: client_cert } },
  scope: 'openid name email mobile',
  callback_path: '/callback',
  grant_type: 'client_credentials'

See the example Rails app.

Configuring

You can configure several options, which you pass in to the provider method via a Hash All variants see in Sber documentation

Authentication Hash

Here's an example Auth Hash available in request.env['omniauth.auth']:

{"provider"=>"sberbusiness",
 "uid"=>"1",
 "info"=>
  { "name": "Ivanov Ivan Ivanovich",
    "phone_number": "+7 (800) 2223535",
    "email": "DEMO@DEMO.COM",
    "accounts": {},
    "id": "1111-1111111111"},
 "credentials"=>
  {"token"=>
    "187041a618229fdaf16613e96e1caabc1e86e46bbfad228de41520e63fe45873684c365a14417289599f3",
   "expires_at"=>1381826003,
   "expires"=>true},
 "extra"=>
  {"raw_info"=>
    {}}

The precise information available may depend on the permissions which you request.

Supported Rubies

Tested with the following Ruby versions:

  • Ruby MRI (2.6.6+)

Contributing to omniauth-sberbusiness

  • Fork, fix, then send me a pull request.

License

Copyright: 2021-2021 Sergei Baksheev (sergbaksheev825@gmail.com)

This library is distributed under the MIT license. Please see the LICENSE file.

About

strategy for authenticating to SberBusiness ID via OAuth

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages