我正在尝试获得accountenabled eq true
的客人名单:
/v1.0/users?&$filter=userType eq 'Guest' and AccountEnabled eq 'true'
我因Invalid filter clause
而收到错误。我究竟做错了什么?
根据您的问题,参数类型无效。我们需要为相应的参数/参数传递合适的参数值。 'true'是字符串,但是true应该是bool / object。
https://graph.microsoft.com/v1.0/users?&$filter=userType eq 'Guest' and AccountEnabled eq true