以下是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不支持的媒体类型T8000内容类型“text/plain”不是
支持。请求内容类型必须为
“应用程序/x-www-form-urlencoded”。
我不是fiddler专家,但由于经验有限,我无法检查传出的http请求,因为它是加密的。
我希望能得到解决这个问题的建议。

最佳答案

您可以尝试省略AddHeader方法调用,而将内容类型设置为第一个AddParameter
问题is described here

09-26 11:24