Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fnando/omniauth-producthunt
ProductHunt (http://producthunt.com) OAuth Strategy for OmniAuth.
https://github.com/fnando/omniauth-producthunt
Last synced: 1 day ago
JSON representation
ProductHunt (http://producthunt.com) OAuth Strategy for OmniAuth.
- Host: GitHub
- URL: https://github.com/fnando/omniauth-producthunt
- Owner: fnando
- License: mit
- Created: 2018-12-26T23:21:11.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2020-09-24T19:42:28.000Z (about 4 years ago)
- Last Synced: 2024-04-28T07:18:45.987Z (7 months ago)
- Language: Ruby
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
# Omniauth::ProductHunt
[![Travis-CI](https://travis-ci.org/fnando/omniauth-producthunt.svg)](https://travis-ci.org/fnando/omniauth-producthunt)
[![CodeClimate](https://codeclimate.com/github/fnando/omniauth-producthunt.svg)](https://codeclimate.com/github/fnando/omniauth-producthunt)
[![Gem](https://img.shields.io/gem/v/omniauth-producthunt.svg)](https://rubygems.org/gems/omniauth-producthunt)
[![Gem](https://img.shields.io/gem/dt/omniauth-producthunt.svg)](https://rubygems.org/gems/omniauth-producthunt)[ProductHunt](http://producthunt.com)'s OAuth Strategy for OmniAuth.
## Installation
Add this line to your application's Gemfile:
gem 'omniauth-producthunt'
And then execute:
$ bundle
Or install it yourself as:
$ gem install omniauth-producthunt
## Usage
`OmniAuth::Strategies::ProductHunt` is simply a Rack middleware. Read the
OmniAuth docs for detailed instructions: .First, create a new application at
. Your callback URL must be
something like `https://example.com/auth/producthunt/callback`. ProductHunt
requires https even for development, so make sure you set up something that can
support it.Here's a quick example, adding the middleware to a Rails app in
`config/initializers/omniauth.rb`. This example assumes you're exporting your
credentials as environment variables.Notice that omniauth-producthunt will always inject `public` and `private`
scopes, so it can retrieve the required information.```ruby
Rails.application.config.middleware.use OmniAuth::Builder do
provider :producthunt,
ENV["PRODUCTHUNT_CLIENT_ID"],
ENV["PRODUCTHUNT_CLIENT_SECRET"]
end
```Now visit `/auth/producthunt` to start authentication against ProductHunt.
## Contributing
1. Fork
[omniauth-producthunt](https://github.com/fnando/omniauth-producthunt/fork)
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create a new Pull Request