首页 > 解决方案 > Microsoft Graph API:(400)错误请求

问题描述

我正在使用 Microsoft Graph API 创建一个使用 的组POST https://graph.microsoft.com/v1.0/groups,但我收到了400 - Bad Request回复。

我的代码:

string url = AuthenticationRequest.Microsoft_Graph_API_URL + "/groups";
Dictionary<string, string> headers = new Dictionary<string, string>();
headers.Add("Authorization", "Bearer xxxxxxxxxxxxx");
WebRequests webReq = new WebRequests();
var ddd = new
{
    description = "Group to help readers",
    displayName = "Reader Assist",
    groupTypes = new List<String>()
    {
    "Unified"
    },
    mailEnabled = true,
    mailNickname = "rhelp",
    securityEnabled = false
};
string body = JsonConvert.SerializeObject(ddd);
string response = webReq.PostRequestWithheaders(url, headers, body);

方法代码PostRequestWithheaders

public string PostRequestWithheaders(string url, IDictionary<string, string> headers, string bodyData)
{
    try
    {
        System.Net.WebRequest webRequest = System.Net.WebRequest.Create(url);
        webRequest.Method = "POST";
        webRequest.ContentType = "application/json";
        if (headers.Count > 0)
        {
            foreach (var item in headers)
            {
                webRequest.Headers.Add(item.Key, item.Value);
            }
        }
        Stream dataStream = webRequest.GetRequestStream();
        byte[] postArray = System.Text.Encoding.ASCII.GetBytes(bodyData);
        dataStream.Write(postArray, 0, postArray.Length);
        dataStream.Close();
        WebResponse response = webRequest.GetResponse();
        dataStream = response.GetResponseStream();
        StreamReader responseReader = new StreamReader(dataStream);
        string returnValue = "";
        returnValue = responseReader.ReadToEnd().ToString();
        responseReader.Close();
        dataStream.Close();
        response.Close();
        return returnValue;

    }
    catch (Exception ex)
    {
        throw;
    }
    return "";
}

Token 是使用作用域生成的openid offline_access Calendars.ReadWrite.Shared profile email https://graph.microsoft.com/User.Read

任何人都可以在这里帮助此代码有什么问题吗?

标签: c#microsoft-graph-apimicrosoft-graph-teams

解决方案


您的属性名称大小写不正确。它们都应该以小写字母开头:

var ddd = new
{
    description = "Group to help readers",
    displayName = "Reader Assist",
    groupTypes = new List<String>()
    {
    "Unified"
    },
    mailEnabled = true,
    sailNickname = "rhelp",
    securityEnabled = false
};

推荐阅读