2

以下是 msdn 提供的用于从 azure ACS(访问控制服务)获取 SWT 令牌的代码示例:

private static string GetTokenFromACS(string scope)
{
    string wrapPassword = pwd;
    string wrapUsername = uid;

    // request a token from ACS
    WebClient client = new WebClient();
    client.BaseAddress = string.Format(
        "https://{0}.{1}", serviceNamespace, acsHostUrl);

    NameValueCollection values = new NameValueCollection();
    values.Add("wrap_name", wrapUsername);
    values.Add("wrap_password", wrapPassword);
    values.Add("wrap_scope", scope);

    byte[] responseBytes = client.UploadValues("WRAPv0.9/", "POST", values);

    string response = Encoding.UTF8.GetString(responseBytes);

    Console.WriteLine("\nreceived token from ACS: {0}\n", response);

    return HttpUtility.UrlDecode(
        response
        .Split('&')
        .Single(value => value.StartsWith("wrap_access_token=", StringComparison.OrdinalIgnoreCase))
        .Split('=')[1]);
}

我正在尝试使用 RestSharp 复制代码:

var request = new RestRequest("WRAPv0.9", Method.POST);
request.AddHeader("Content-Type", "application/x-www-form-urlencoded");
request.AddParameter("wrap_name", uid, ParameterType.RequestBody);
request.AddParameter("wrap_password", pwd, ParameterType.RequestBody);
request.AddParameter("wrap_scope", realm, ParameterType.RequestBody);

RestClient client = new RestClient(
    string.Format(@"https://{0}.{1}", serviceNamespace, acsHostUrl));

client.ExecuteAsync(request, Callback);

我尝试了上述代码的其他变体,但无济于事。我不断收到 415 错误,指出:

415 Unsupported Media Type T8000 Content-Type 'text/plain' 不受支持。请求内容类型必须是“application/x-www-form-urlencoded”。

我不是 Fiddler 专家,但由于我的经验有限,我无法检查我传出的 http 请求,因为它是加密的。

我将不胜感激有关解决问题的建议。

4

1 回答 1

1

您可以尝试省略AddHeader方法调用,而是将 Content-Type 设置为 first AddParameter此处描述了
该问题。

于 2013-02-20T22:11:30.120 回答