Skip to content

Commit

Permalink
Change scope used for OSS portal client (#8350)
Browse files Browse the repository at this point in the history
  • Loading branch information
hallipr authored May 29, 2024
1 parent b7f9ce2 commit a57c073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/identity-resolution/Helpers/GitHubToAADConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ private async Task<UserLink[]> GetPeopleLinksAsync()
try
{
// This is aad scope of opensource rest API.
string[] scopes = new [] { "api://66b6ea26-954d-4b68-8f48-71e3faec7ad1/.default" };
string[] scopes = new [] { "66b6ea26-954d-4b68-8f48-71e3faec7ad1/.default" };
opsAuthToken = await credential.GetTokenAsync(new TokenRequestContext(scopes), CancellationToken.None);
}
catch (Exception ex)
Expand Down

0 comments on commit a57c073

Please sign in to comment.