EN / FR / DE

6.1 Introduction to Obtaining an Access Token

An Access Token is necessary to access protected data or functions of an application. To obtain this token, the Auth Token must first be sent to the server via a POST request. The Auth Token serves as authentication that the user or application is authorized to obtain an Access Token. After sending the POST request, the server responds with a response that contains the Access Token.

With this Access Token, a GET request can be sent to the desired application or API. In this request, the Access Token is transmitted as proof of access to the protected resources. The application checks the Access Token and, if it is valid, responds with the requested data or information. The Access Token is thus a key that enables secure and authorized access to an application's resources.

It is essential to note that Access Tokens are typically only valid for a limited time, which is why regular renewals may be necessary to continue accessing protected data.