.net - Azure AD Graph API $filter not working with spaces -


i want filter groups based on displayname.

this works:

https://graph.windows.net/x.onmicrosoft.com/groups?$filter=displayname%20eq%20'programmers'"&api-version=2013-11-08 

this doesn't:

https://graph.windows.net/x.onmicrosoft.com/groups?$filter=displayname%20eq%20'web%20developers'api-version=2013-11-08 

note space in web%20developers. groups without space work, groups space not.

what doing wrong?

thanks!

https://graph.windows.net/x.onmicrosoft.com/groups?$filter=displayname%20eq%20'web%20developers'api-version=2013-11-08

please check request url carefully. think there wrong it. need add '&' in part 'web%20developers'api-version=2013-11-08

i have tested on local api-version 1.6. space in group name not affect our result. see more detailed information following screenshot: enter image description here


Comments

Popular posts from this blog

javascript - Thinglink image not visible until browser resize -

firebird - Error "invalid transaction handle (expecting explicit transaction start)" executing script from Delphi -

mongodb - How to keep track of users making Stripe Payments -