Skip to content

Commit

Permalink
CSP-1245 Fixed roatp token service to use correct identifier
Browse files Browse the repository at this point in the history
  • Loading branch information
DevenKShah committed Mar 15, 2024
1 parent a7a52fb commit 5bc3897
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public async Task<string> GetToken()
var configuration = await _configurationService.GetConfig();

var azureServiceTokenProvider = new AzureServiceTokenProvider();
var generatedToken = await azureServiceTokenProvider.GetAccessTokenAsync(configuration.QnaApiAuthentication.Identifier);
var generatedToken = await azureServiceTokenProvider.GetAccessTokenAsync(configuration.RoatpApiAuthentication.Identifier);

return generatedToken;
}
Expand Down

0 comments on commit 5bc3897

Please sign in to comment.