如何制定包含非英语字符(如日耳曼语变音符号)的Microsoft Graph /myOrganization/users
OData查询?
实施例: 我的租户中有一位名叫'ThomasMüller'的用户。如果我查询
https://graph.microsoft.com/v1.0/myOrganization/users?$filter=startswith(surname,'mu')
我得到了
"value": [
{
"displayName": "Thomas Müller",
"givenName": "Thomas ",
"surname": "Müller"
}
]
// Result truncated for brevity
但如果我搜索
https://graph.microsoft.com/v1.0/myOrganization/users?$filter=startswith(surname,'mü')
我得到了
"value": []
答案 0 :(得分:0)
Microsoft Graph现在似乎已按预期支持国际字符。
答案 1 :(得分:-1)
您可以尝试将字符串编码为utf8格式。