
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.