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

Development

Runtime

 Project Readme

OmniAuth Dribbble

This is an OmniAuth strategy for authenticating with Dribbble. To use it, you'll need to register for an OAuth2 Client ID and Secret on your Dirbbble Applications Page.

Basic Usage

use OmniAuth::Builder do
  provider :dribbble, ENV['DRIBBLE_CLIENT_KEY'], ENV['DRIBBBLE_CLIENT_SECRET']
end

Scopes

Dribbble API v1 lets you set scopes to provide granular access. public is the default scope:

use OmniAuth::Builder do
  provider :dribbble, ENV['DRIBBLE_CLIENT_KEY'], ENV['DRIBBBLE_CLIENT_SECRET'], scope: 'public write'
end

More info on Scopes.