
Security News
New Website “Is It Really FOSS?” Tracks Transparency in Open Source Distribution Models
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
omniauth-instagram-api
Advanced tools
An OmniAuth strategy for authenticating with the Instagram API with Instagram Login via OAuth.
Note: Instagram API with Instagram Login is different from the Instagram Login with Facebook Login
Add this line to your application's Gemfile:
gem 'omniauth-instagram-api'
And then execute:
bundle install
Here's an example of using it in a Rails application:
# config/initializers/omniauth.rb
Rails.application.config.middleware.use OmniAuth::Builder do
provider :instagram, ENV['INSTAGRAM_CLIENT_ID'], ENV['INSTAGRAM_CLIENT_SECRET']
end
Make sure to set INSTAGRAM_CLIENT_ID
and INSTAGRAM_CLIENT_SECRET
environment variables to your actual credentials or use Rails encrypted credentials (e.g. Rails.application.credentials.instagram
).
The default scope for this strategy is instagram_business_basic
. To add more scopes simply specify them after your credentials:
# config/initializers/omniauth.rb
Rails.application.config.middleware.use OmniAuth::Builder do
provider :instagram, ENV['INSTAGRAM_CLIENT_ID'], ENV['INSTAGRAM_CLIENT_SECRET'],
scope: [
'instagram_business_basic',
'instagram_business_content_publish',
'instagram_business_manage_messages',
'instagram_business_manage_comments',
].join(",")
end
This is an example of what the Auth Hash available in request.env['omniauth.auth']
would look like:
{
provider: 'instagram',
uid: '1234567890',
info: {
name: "John Doe",
nickname: "johndoe",
image: "https://scontent-nrt1-1.cdninstagram.com/v/..."
},
credentials: {
token: 'qwertyuiopasdfghjklzxcvbnm',
expires: true,
expires_at: 1733140352,
},
extra: {
raw_info: {
id: "987654321",
name: "John Doe",
user_id: "1234567890",
username: "johndoe",
media_count: 1,
account_type: "BUSINESS",
follows_count: 42,
followers_count: 42,
profile_picture_url: "https://scontent-nrt1-1.cdninstagram.com/v/..."
}
}
}
The token stored in the credentials
lasts for 60 days and can be refreshed.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that omniauth-instagram-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.