Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/omniauth/omniauth-instagram
OmniAuth strategy for Instagram.
https://github.com/omniauth/omniauth-instagram
authentication instagram omniauth omniauth-strategy
Last synced: about 4 hours ago
JSON representation
OmniAuth strategy for Instagram.
- Host: GitHub
- URL: https://github.com/omniauth/omniauth-instagram
- Owner: omniauth
- Created: 2011-11-28T20:16:05.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2023-03-30T18:08:26.000Z (over 1 year ago)
- Last Synced: 2024-10-13T13:14:05.091Z (24 days ago)
- Topics: authentication, instagram, omniauth, omniauth-strategy
- Language: Ruby
- Homepage:
- Size: 25.4 KB
- Stars: 112
- Watchers: 9
- Forks: 85
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OmniAuth Instagram
This is the unofficial OmniAuth strategy for authenticating to Instagram. To
use it, you'll need to sign up for an OAuth2 Application ID and Secret
on the [Instagram Developer website](http://instagram.com/developer/).## Basic Usage
use OmniAuth::Builder do
provider :instagram, ENV['INSTAGRAM_ID'], ENV['INSTAGRAM_SECRET'], scope: 'basic+media+public_content+follower_list+comments+relationships+likes'
end## Notes:
- For more information on scopes: https://www.instagram.com/developer/authorization/
- Instagram has started enforcing signed requests for its API. If you have enabled `Enforce signed requests` in your app then, you can pass `enforce_signed_requests: true` in the above configuration. More info: https://instagram.com/developer/secure-api-requests/## License
Copyright (c) 2011-2017 Mihai Anca and Intridea, Inc.
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.