Social Sciences, asked by cannibalgirl1, 16 days ago

Search for here only , rest i have found 1)it means to take oath
2) it is based on social and economic equality​

Attachments:

Answers

Answered by gyaneshwarsingh882
0

Answer:

Explanation:

Introduction

The Authentication API enables you to manage all aspects of user identity when you use Auth0. It offers endpoints so your users can log in, sign up, log out, access APIs, and more.

The API supports various identity protocols, like OpenID Connect, OAuth 2.0, and SAML.

This API is designed for people who feel comfortable integrating with RESTful APIs. If you prefer a more guided approach check out our Quickstarts or our Libraries.

Base URL

The Authentication API is served over HTTPS. All URLs referenced in the documentation have the following base: https://YOUR_DOMAIN

Authentication methods

There are three ways to authenticate with this API:

with an OAuth2 Access Token in the Authorization request header field (which uses the Bearer authentication scheme to transmit the Access Token)

with your Client ID and Client Secret credentials

only with your Client ID

Each endpoint supports only one option.

OAuth2 token

In this case, you have to send a valid Access Token in the Authorization header, using the Bearer authentication scheme. An example is the Get User Info endpoint. In this scenario, you get an Access Token when you authenticate a user, and then you can make a request to the Get User Info endpoint, using that token in the Authorization header, in order to retrieve the user's profile.

Client ID and Client Secret

In this case, you have to send your Client ID and Client Secret information in the request JSON body. An example is the Revoke Refresh Token endpoint. This option is available only for confidential applications (such as applications that are able to hold credentials in a secure way without exposing them to unauthorized parties).

Client ID

.

Similar questions