如何以编程方式获取Azure API管理的访问令牌?

如何以编程方式获取Azure API管理的访问令牌?,azure,azure-active-directory,azure-api-management,Azure,Azure Active Directory,Azure Api Management,我正在尝试使用doc在API管理实例中实现Azure Active Directory。文档建议,为了获得访问令牌,我需要使用开发者门户 我的问题是:外部应用程序将与API管理进行通信。有没有一种方法可以省略开发人员门户并以编程方式获取访问令牌 这很痛苦,但多亏了Jos Lieben,我才能够用这个Powershell功能做到这一点 它专门用于代表组织授予API访问权限,但正如您所见,您可以提取命令以获取和使用API令牌 原始作者链接: Function Grant-OAuth2Permissi

我正在尝试使用doc在API管理实例中实现Azure Active Directory。文档建议,为了获得访问令牌,我需要使用开发者门户


我的问题是:外部应用程序将与API管理进行通信。有没有一种方法可以省略开发人员门户并以编程方式获取访问令牌

这很痛苦,但多亏了Jos Lieben,我才能够用这个Powershell功能做到这一点

它专门用于代表组织授予API访问权限,但正如您所见,您可以提取命令以获取和使用API令牌

原始作者链接:

Function Grant-OAuth2PermissionsToApp{
    Param(
        [Parameter(Mandatory=$true)]$Username, #global administrator username
        [Parameter(Mandatory=$true)]$Password, #global administrator password
        [Parameter(Mandatory=$true)]$azureAppId #application ID of the azure application you wish to admin-consent to
    )

    $secpasswd = ConvertTo-SecureString $Password -AsPlainText -Force
    $mycreds = New-Object System.Management.Automation.PSCredential ($Username, $secpasswd)
    $res = login-azurermaccount -Credential $mycreds
    $context = Get-AzureRmContext
    $tenantId = $context.Tenant.Id
    $refreshToken = @($context.TokenCache.ReadItems() | where {$_.tenantId -eq $tenantId -and $_.ExpiresOn -gt (Get-Date)})[0].RefreshToken
    $body = "grant_type=refresh_token&refresh_token=$($refreshToken)&resource=74658136-14ec-4630-ad9b-26e160ff0fc6"
    $apiToken = Invoke-RestMethod "https://login.windows.net/$tenantId/oauth2/token" -Method POST -Body $body -ContentType 'application/x-www-form-urlencoded'
    $header = @{
     'Authorization' = 'Bearer ' + $apiToken.access_token
     'X-Requested-With'= 'XMLHttpRequest'
     'x-ms-client-request-id'= [guid]::NewGuid()
     'x-ms-correlation-id' = [guid]::NewGuid()
    }
    $script:url = "https://main.iam.ad.ext.azure.com/api/RegisteredApplications/$azureAppId/Consent?onBehalfOfAll=true"
    Invoke-RestMethod -Uri $url -Headers $header -Method POST -ErrorAction Stop
}