Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/beanieboi/omniauth-vimeo
Omniauth Strategy for Vimeo
https://github.com/beanieboi/omniauth-vimeo
Last synced: 24 days ago
JSON representation
Omniauth Strategy for Vimeo
- Host: GitHub
- URL: https://github.com/beanieboi/omniauth-vimeo
- Owner: beanieboi
- Created: 2012-05-17T10:33:33.000Z (over 12 years ago)
- Default Branch: main
- Last Pushed: 2022-04-11T18:35:43.000Z (over 2 years ago)
- Last Synced: 2024-03-15T06:04:12.110Z (8 months ago)
- Language: Ruby
- Homepage: http://beanieboi.github.com/omniauth-vimeo/
- Size: 43.9 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: Changes.md
- Contributing: CONTRIBUTING.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# OmniAuth Vimeo
This is an OmniAuth strategy for authenticating to Vimeo. To
use it, you'll need to sign up for an OAuth Application ID and Secret
on the [Vimeo Applications Page](https://developer.vimeo.com/apps).
You can read more about Vimdeo's OAuth over at their [developer page](https://developer.vimeo.com/api/authentication)## Contributing
see [CONTRIBUTING.md][contributing]
[contributing]: https://github.com/beanieboi/omniauth-vimeo/blob/master/CONTRIBUTING.md
## Installation
Add this line to your application's Gemfile:
gem 'omniauth-vimeo'
And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-vimeo
## Usage
If omniauth-vimeo is ready to go, you need to add the following lines to your `config/initializers/omniauth.rb`:
use OmniAuth::Builder do
provider :vimeo, ENV['VIMEO_KEY'], ENV['VIMEO_SECRET']
endIf you need write permission use the following lines:
use OmniAuth::Builder do
provider :vimeo, ENV['VIMEO_KEY'], ENV['VIMEO_SECRET'], scope: "write"
endYou need to replace the VIMEO_KEY and VIMEO_SECRET with your own credentials, you can get them at the Vimeo's developer page as mention above.
Open the following URL and connect your Vimeo account with your application:
/auth/vimeo
## Sample Auth Hash
{
"provider"=>"vimeo",
"uid"=>5387263,
"info"=>{
"id"=>5387263,
"nickname"=>"beanieboi",
"name"=>"beanie",
"bio"=>nil,
"account"=>"basic",
"location"=>nil,
"pictures"=>[
{
"type"=>"portrait",
"width"=>30,
"height"=>30,
"link"=>"https://i.vimeocdn.com/portrait/2249717_30x30.jpg"
},
{
"type"=>"portrait",
"width"=>75,
"height"=>75,
"link"=>"https://i.vimeocdn.com/portrait/2249717_75x75.jpg"
},
{
"type"=>"portrait",
"width"=>100,
"height"=>100,
"link"=>"https://i.vimeocdn.com/portrait/2249717_100x100.jpg"
},
{
"type"=>"portrait",
"width"=>300,
"height"=>300,
"link"=>"https://i.vimeocdn.com/portrait/2249717_300x300.jpg"
}
],
"websites"=>[],
"content_filter"=>[
"language",
"drugs",
"violence",
"nudity",
"safe",
"unrated"
],
"created_time"=>"2010-12-03T17:57:33+00:00",
"link"=>"https://vimeo.com/beanieboi",
"uri"=>"/users/5387263"
},
"credentials"=>{
"token"=>"token",
"expires"=>false
},
"extra"=>{
"scope"=>"public private"
}
}## Supported Rubies
OmniAuth Vimeo is tested under 2.3, 2.4, 2.5, JRuby (head) and Rubinius and ruby-head.
[![Build Status](https://secure.travis-ci.org/beanieboi/omniauth-vimeo.png?branch=master)](http://travis-ci.org/beanieboi/omniauth-vimeo)
## License
Copyright (c) 2015 Benjamin Fritsch.
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.