Hello Gerald Donnini, you cannot get a Microsoft Graph access token that never expires. For security, all access tokens are short-lived (usually 1 hour). What you need is to implement the OAuth 2.0 authorization flow with a refresh token.
A refresh token is used to obtain new access and refresh token pairs when the current access token expires. When a client acquires an access token to access a protected resource, the client also receives a refresh token.
Reference Document-