Module: InstagramApi::Client

Includes:
HTTParty
Included in:
Resource, Search
Defined in:
lib/instagram_api/client.rb

Constant Summary collapse

BASE_API_URI =
'https://api.instagram.com/v1'.freeze
ERROR_CODES =
{
  400 => BadRequest,
  404 => NotFound,
  429 => TooManyRequests,
  500 => InternalServerError,
  502 => BadGateway,
  503 => ServiceUnavailable,
  504 => GatewayTimeout
}.freeze