Low commit activity in last 3 years
There's a lot of open issues
A long-lived project that still receives updates
Official OmniAuth strategy for BigCommerce.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

>= 1.4.4, < 2
 Project Readme

OmniAuth Bigcommerce Strategy

Build Status

This gem provides a simple way to authenticate to Bigcommerce using OmniAuth.

Installation

Add to your application's Gemfile:

gem 'omniauth-bigcommerce'

Usage

First, you will need to register an application.

Create a config/initializers/omniauth.rb initializer:

use OmniAuth::Builder do
  provider :bigcommerce, ENV['BC_CLIENT_ID'], ENV['BC_CLIENT_SECRET'], 'users_basic_information store_v2_settings store_v2_orders'
end

You may also overwrite default config options:

Rails.application.config.middleware.use OmniAuth::Builder do
  provider :bigcommerce, ENV['BC_CLIENT_ID'], ENV['BC_CLIENT_SECRET'],
           {
             scope: "users_basic_information store_v2_products store_v2_information",
             client_options: {
               site: 'https://login.bigcommerce.com'
             }
           }
end

See the Omniauth Wiki for more information.

Environment Variables

The gem will look for the bigcommerce oauth provider URL in the BC_AUTH_SERVICE environment variable. It defaults to https://login.bigcommerce.com if the env variable is not defined.

Auth Hash Schema

The following response format is provided back to you for this provider:

{
  uid: '12345',
  info: {
    name: 'John Doe',
    email: 'john.doe@example.com'
  },
  credentials: {
    token: 'xyz123abc'
  },
  extra: {
    raw_info: {},
    scopes: 'requested_scopes store_v2_settings'
    context: 'store/xyz123',
    account_uuid: 'fooBar'
  }
}

Contributing

Fork & submit a pull request.