REST API client library authentication

The client library supports the following authentication methods:
  • Basic authentication

    This method uses the HTTP header itself to pass the encoded username and password.

  • Bearer authentication

    Bearer authentication (also called token authentication) is an HTTP authentication scheme that involves security tokens called bearer tokens

  • OAuth 2.0 authentication

    OAuth 2.0 is an authorization protocol that gives an API client limited access to user data on a web server

  • API Keys

    Some APIs use API keys for authorization. An API key is a token that a client provides when making API calls.

See also