Skip to content

Commit 11be2bd

Browse files
authored
Merge pull request #110131 from FlorianBorn71/RemoveRefToPPE
Removed reference to ppe from link
2 parents e810077 + ac64bd4 commit 11be2bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/remote-rendering/how-tos/tokens.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ $accountId = "<account_id_from_portal>"
5252
$accountKey = "<account_key_from_portal>"
5353
5454
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12;
55-
$webResponse = Invoke-WebRequest -Uri "https://sts.ppe.mixedreality.azure.com/accounts/$accountId/token" -Method Get -Headers @{ Authorization = "Bearer ${accountId}:$accountKey" }
55+
$webResponse = Invoke-WebRequest -Uri "https://sts.mixedreality.azure.com/accounts/$accountId/token" -Method Get -Headers @{ Authorization = "Bearer ${accountId}:$accountKey" }
5656
$response = ConvertFrom-Json -InputObject $webResponse.Content
5757
5858
Write-Output "Token: $($response.AccessToken)"

0 commit comments

Comments
 (0)