Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.