Skip to main content

OAuth 2.0 is a widely used authorization framework that enables secure access to protected resources without exposing user credentials.

OAuth2 Authorization Block

It works through access tokens obtained via different grant types like Client Credentials, Authorization Code, or Refresh Tokens.

Voiden support OAuth 2.0 authentication, allowing seamless integration with modern APIs and identity providers such as Google, GitHub, and Microsoft.

Try it Out

  1. In your Voiden file, type /auth-oauth2 and press Enter to create a Authorization Digest Block.

Authorization OAuth1 Slash Command

  1. Fill the required params for the block.

Authorization OAuth1 Slash Command ' 3. Hit Cmd + Enter (Mac) or Ctrl + Enter (Windows/Linux) to run the request
or click the green Play button in the toolbar.

  1. Check the Response Panel

Block Parameters

ParameterValueDescription
access_tokenstringThe token issued by the authorization server after successful authentication. It grants access to protected resources on behalf of the user or application.
token_typestringSpecifies the type of token issued. Commonly "Bearer", which means the token should be sent in the Authorization header using the Bearer scheme.
header_prefixstringThe prefix added before the token in the request header. For example, with a Bearer token type, the header becomes Authorization: Bearer <access_token>.