The project is in a healthy, maintained state
A comprehensive Ruby library for Instagram media publishing with OAuth authentication, user information retrieval, and support for images, videos, carousels with captions. Features include token management, error handling, and clean separation of concerns.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 13.0
~> 3.0
~> 1.0

Runtime

~> 2.0
~> 2.0
 Project Readme

InstagramPublishApiViaInstagramLogin

A Ruby gem for publishing media to Instagram using Instagram Basic Display API and Instagram Graph API. This gem provides a simple interface to authenticate users via Instagram Login and publish images, videos, and carousel posts to their Instagram accounts.

Prerequisites

Before using this gem, you need to:

  1. Create a Facebook App and configure Instagram Basic Display API
  2. Set up Instagram Basic Display API permissions
  3. Configure OAuth redirect URIs in your Facebook App settings
  4. Obtain your Instagram Business Account ID

Installation

Add this line to your application's Gemfile:

gem 'instagram_publish_api_via_instagram_login'

And then execute:

bundle install

Or install it yourself as:

gem install instagram_publish_api_via_instagram_login

Usage

This gem provides three independent classes for working with Instagram API:

Authentication

require 'instagram_publish_api_via_instagram_login'

# Create authenticator
authenticator = InstagramPublishApiViaInstagramLogin::Authenticator.new(
  client_id: 'your_instagram_app_id',
  client_secret: 'your_instagram_app_secret',
  redirect_uri: 'your_redirect_uri'
)

# Exchange code for token
response = authenticator.exchange_code_for_token(authorization_code)
access_token = response['access_token']

User Information

# Create user details instance
user_details = InstagramPublishApiViaInstagramLogin::UserDetails.new(
  access_token: access_token
)

# Get user info
user_info = user_details.get_user_info(
  fields: 'id,username,account_type'
)

# Get long-lived access token (60 days)
long_lived_token = user_details.get_long_lived_access_token(
  client_secret: 'your_app_secret'
)

# Refresh access token (extends for another 60 days)
refreshed_token = user_details.refresh_access_token

Publishing

# Create publisher with access token
publisher = InstagramPublishApiViaInstagramLogin::Publisher.new(
  access_token: access_token
)

# Publish single image
result = publisher.publish_media(
  ig_id: instagram_business_account_id,
  media_url: 'https://example.com/image.jpg',
  media_type: 'IMAGE'
)

# Publish image with caption
result = publisher.publish_media(
  ig_id: instagram_business_account_id,
  media_url: 'https://example.com/image.jpg',
  media_type: 'IMAGE',
  caption: 'Beautiful sunset! 🌅 #nature #photography'
)

# Publish carousel with caption
result = publisher.publish_media(
  ig_id: instagram_business_account_id,
  media_url: [
    'https://example.com/image1.jpg',
    'https://example.com/image2.jpg'
  ],
  media_type: 'CAROUSEL',
  caption: 'Photo collection from my trip ✈️ #travel #memories'
)

# That's it! publish_media handles everything automatically:
# - Creates media container(s)
# - Waits for processing to complete  
# - Publishes the media

Error Handling

The gem includes comprehensive error handling for API responses:

begin
  result = client.publish_media(
    ig_id: instagram_business_account_id,
    access_token: access_token,
    media_url: 'https://example.com/image.jpg'
  )
rescue InstagramPublishApiViaInstagramLogin::Error => e
  puts "Error: #{e.message}"
end

Supported Media Types

  • IMAGE - Single images (JPEG, PNG) with optional caption
  • VIDEO - Single videos (MP4, MOV) with optional caption
  • REELS - Instagram Reels with optional caption
  • STORIES - Instagram Stories with optional caption
  • CAROUSEL - Multiple images in a single post with optional caption (automatically handled when passing an array of URLs)

Features:

  • Captions - Add text descriptions, hashtags, and mentions to your posts
  • Token Management - Get long-lived tokens and refresh existing tokens

Note: Currently, carousel posts support only images. Support for mixed media types (images + videos) in carousels will be added in future versions.

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ninjarender/instagram_publish_api_via_instagram_login. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the InstagramPublishApiViaInstagramLogin project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.