microsoft / EntraExporter

PowerShell module to export a local copy of an Entra (Azure AD) tenant configuration.
https://aka.ms/EntraExporter
MIT License
568 stars 89 forks source link

Remove extra '$' sign that gets added later #48

Closed mathias-nyman closed 1 year ago

mathias-nyman commented 1 year ago

There's an issue that the inner '$expand' is prepended with an urlencoded '$' (%24) when the graph API request is made. I'm not sure which component does this; perhaps the graph api library? Replacing the '$expand' with just 'expand' fixes the issue.

Closes #47