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

Runtime

>= 0
~> 1.0
 Project Readme

OmniAuth Photobucket

A Photobucket strategy for OmniAuth 1.0.

Installation

Add this line to your application's Gemfile:

gem 'omniauth-photobucket'

And then run bundle.

Usage

use OmniAuth::Builder do
  provider 'photobucket', PHOTOBUCKET_KEY, PHOTOBUCKET_SECRET
end

# or in your devise config:
config.omniauth :photobucket, PHOTOBUCKET_KEY, PHOTOBUCKET_SECRET

Auth Hash Schema

The following information is provided back to you for this provider:

{
  provider: 'photobucket',
  uid: 'photobucket_username',
  info: {
    name:     'photbucket_username',
    nickname: 'photbucket_username',
    urls: {
      home: 'http://s1234.photobucket.com/albums/s123/photobucket_username',
      # You'll need to store this for some API calls
      api_subdomain: 'api1234.photobucket.com'
    }
  },
  credentials: {
    token:  'the_token',
    secret: 'the_secret'
  },
  extra: { 
    # check this out for a few other small things
    raw_info: raw_info_from_request
  }
}