Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/google-app-engine/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Microsoft graph api 为什么;解析选择和展开失败”;错误_Microsoft Graph Api - Fatal编程技术网

Microsoft graph api 为什么;解析选择和展开失败”;错误

Microsoft graph api 为什么;解析选择和展开失败”;错误,microsoft-graph-api,Microsoft Graph Api,我正在编写一个应用程序,它将调用各种Microsoft Graph API。如何解释此API调用的上述错误 https://graph.microsoft.com/beta/users?$select=id,displayName$filter=accountEnabled eq true 无法发表评论,因此我尝试回答。:) 您在$filter之前的URL中遗漏了一个“&”。 必须用“&”表示不同的选项 尝试以下方法: https://graph.microsoft.com/beta/user

我正在编写一个应用程序,它将调用各种Microsoft Graph API。如何解释此API调用的上述错误

https://graph.microsoft.com/beta/users?$select=id,displayName$filter=accountEnabled eq true

无法发表评论,因此我尝试回答。:)

您在$filter之前的URL中遗漏了一个“&”。 必须用“&”表示不同的选项

尝试以下方法:

https://graph.microsoft.com/beta/users?$select=id,displayName&$filter=accountEnabled eq true
顺便说一句,此呼叫在“v1.0”中可用。也许你也可以改变这个

https://graph.microsoft.com/v1.0/users?$select=id,displayName&$filter=accountEnabled eq true

无法发表评论,因此我尝试回答。:)

您在$filter之前的URL中遗漏了一个“&”。 必须用“&”表示不同的选项

尝试以下方法:

https://graph.microsoft.com/beta/users?$select=id,displayName&$filter=accountEnabled eq true
顺便说一句,此呼叫在“v1.0”中可用。也许你也可以改变这个

https://graph.microsoft.com/v1.0/users?$select=id,displayName&$filter=accountEnabled eq true

如果这是您问题的解决方案,请将此标记为答案。:)如果这是您问题的解决方案,请将此标记为答案。:)