Esempio n. 1
0
        public async Task <string> AuthenticateAsync(string temporaryToken, CancellationToken cancellationToken = default)
        {
            var responseMessage = await _restContext.GetAsync(
                Rest.Authentication.Authenticate, temporaryToken, cancellationToken);

            return(await responseMessage.Content.ReadAsStringAsync());
        }