# OAuth 1.0

In OAuth 1.0 authorization, the system asks for the following attributes:

  • Signature Method (Supports HMAC-SHA1, PLAINTEXT)
  • Consumer Key
  • Consumer Secret
  • Scope

After filling in these attributes, the user just needs to fill the Access Token & Secret and save the authorization.

Note: For more details on OAuth 1.0, please refer to OAuth 1.0 Spec

# Example:

Let us take an example of Twitter authorization (OAuth 1.0A)

  1. You just need to provide the OAuth 1.0 details like Signature method, consumer key, consumer secret, scope (optional), access token, access secret.
  1. After that, you just need to it.

  2. Once it is saved, you can use it in any test case like this,