配置了一个应用程序时,没有为应用程序注册回复地址

H. *_*lyn 5 c# wpf azure-active-directory azure-keyvault

我正在制作一个 WPF 应用程序,它必须从 Azure Key Vault 获取一个密钥,但我总是出现这个错误:

AADSTS500113:申请没有注册回复地址。

这是我使用的代码:

public class KeyProvider
{
    public string BaseUrl => "https://my-key-vault.vault.azure.net";
    public Uri RedirectUri => new Uri("urn:ietf:wg:oauth:2.0:oob");
    public KeyVaultClient KeyVaultClient { get; private set; }

    public KeyProvider()
    {
        KeyVaultClient = new KeyVaultClient(GetAccessToken);
    }

    public async Task<string> GetSecretAsync(string key)
    {
        SecretBundle secret = await KeyVaultClient.GetSecretAsync(BaseUrl, key);
        return secret.Value;
    }

    private async Task<string> GetAccessToken(string azureTenantId, string clientId, string redirectUri)
    {
        AuthenticationContext context = new AuthenticationContext(azureTenantId);
        AuthenticationResult tokenResult = await context.AcquireTokenAsync("https://vault.azure.net", clientId, RedirectUri, new PlatformParameters(PromptBehavior.RefreshSession));

        return tokenResult.AccessToken;
    }
}
Run Code Online (Sandbox Code Playgroud)

当我调试时GetAccessToken,我看到redirectUri (方法中的参数)是一个空字符串。

这是我在 Azure 门户中的配置。

我错过了什么吗?

Jac*_*Jia 4

在您的代码中,重定向 uri 是 http。但在您的应用程序中,它是 https。请尝试将它们设置为相同的。

更新:

权限:

在此输入图像描述

平台:

在此输入图像描述

在 Key Vault 中添加用户的访问策略。

在此输入图像描述

代码:

class Program
{
    public static string clientId = "d4c9b2ed-****-****-****-30a787f7c928";
    public static string redirectUri = "https://localhost/";
    public static string baseUrl = "https://jackkv.vault.azure.net/";

    public static async Task<string> AuthenticationCallback(string authority, string resource, string scope)
    {
        var result = await new AuthenticationContext(authority).AcquireTokenAsync(resource, clientId, new Uri(redirectUri), new PlatformParameters(PromptBehavior.RefreshSession));
        return result.AccessToken;
    }


    static void Main(string[] args)
    {

        Console.ReadLine();

        KeyVaultClient kvc = new KeyVaultClient(AuthenticationCallback);
        var secret = kvc.GetSecretAsync(baseUrl, "testSecret").Result;

        Console.WriteLine(secret.Value);

        Console.ReadLine();
    }
}
Run Code Online (Sandbox Code Playgroud)

结果:

在此输入图像描述