instagram_basic_display
A client gem for the Instagram Basic Display API
File Explorer
- console
- setup
- auth.rb
- client.rb
- configuration.rb
- errors.rb
- profile.rb
- response.rb
- version.rb
- instagram_basic_display.rb
- long_lived_token.yml
- long_lived_token_failed.yml
- media_feed.yml
- media_feed_failed.yml
- media_feed_from_link.yml
- media_feed_with_limit.yml
- media_node.yml
- media_node_failed.yml
- profile.yml
- profile_failed.yml
- refresh_long_lived_token.yml
- refresh_long_lived_token_failed.yml
- short_lived_token.yml
- short_lived_token_failed.yml
- auth_spec.rb
- client_spec.rb
- configuration_spec.rb
- profile_spec.rb
- response_spec.rb
- instagram_basic_display_spec.rb
- spec_helper.rb
- .gitignore
- .rspec
- .rubocop.yml
- .ruby-version
- CODE_OF_CONDUCT.md
- Gemfile
- Gemfile.lock
- instagram_basic_display.gemspec
- LICENSE.txt
- Rakefile
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
bundle
View Details ▼
bundle
Dependency manager for the Ruby programming language.
bundle install
Install all gems defined in the `Gemfile` expected in the working directory:
bundle exec {{command}} {{arguments}}
Execute a command in the context of the current bundle:
bundle update
Update all gems by the rules defined in the `Gemfile` and regenerate `Gemfile.lock`:
gem
View Details ▼
gem
A package manager for the Ruby programming language.
gem search {{regex}} {{[-a|--all]}}
Search for remote gem(s) and show all available versions:
gem install {{gem_name}}
Install the latest version of a gem:
gem install {{gem_name}} {{[-v|--version]}} {{1.0.0}}
Install a specific version of a gem:
rake
View Details ▼
rake
A Make-like program for Ruby.
Tasks for `rake` are specified in a Rakefile.
rake
Run the `default` Rakefile task:
rake {{task}}
Run a specific task:
rake --jobs {{n}}
Execute `n` jobs at a time in parallel (number of CPU cores + 4 by default):
