0.05
No release in over 3 years
Low commit activity in last 3 years
Omniauth Strategy for Battle.net OAuth Login. For more info visit https://dev.battle.net
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.6
~> 0

Runtime

 Project Readme

OmniAuth Bnet

Gem Version

This is an OmniAuth strategy for authenticating to Blizzard's Battle.net OAuth service. In order to use it you need to register an application at the Battle.net Developer Portal

Installation

Add this line to your application's Gemfile:

gem 'omniauth-bnet'

And then execute:

$ bundle

Or install it yourself as:

$ gem install omniauth-bnet

Usage

use OmniAuth::Builder do
    provider :bnet, ENV['BNET_KEY'], ENV['BNET_SECRET']
end

Scopes

In order to provide a list of scopes to request from battle.net:

use OmniAuth::Builder do
    provider :bnet, ENV['BNET_KEY'], ENV['BNET_SECRET'], scope: "wow.profile,sc2.profile"
end

License

The MIT License