-
Notifications
You must be signed in to change notification settings - Fork 175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Environment: MicrosoftGraphEndpoints #585
Comments
mbarnes
added a commit
to mbarnes/ARO-RP
that referenced
this issue
Apr 11, 2022
The Azure/go-autorest module does not define an endpoint for the Microsoft Graph API [1] so define it ourselves for now. [1] Azure/go-autorest#585
mbarnes
added a commit
to mbarnes/ARO-RP
that referenced
this issue
Apr 15, 2022
The Azure/go-autorest module does not define an endpoint for the Microsoft Graph API [1] so define it ourselves for now. [1] Azure/go-autorest#585
The current graph endpoints are for AAD graph which is different from Microsoft Graph. We can add them, but the existing ones will remain the same. |
This was referenced Apr 15, 2022
Fixed in |
mbarnes
added a commit
to mbarnes/ARO-RP
that referenced
this issue
Apr 26, 2022
The Azure/go-autorest module does not define an endpoint for the Microsoft Graph API [1] so define it ourselves for now. [1] Azure/go-autorest#585
mbarnes
added a commit
to mbarnes/ARO-RP
that referenced
this issue
May 6, 2022
The Azure/go-autorest module does not define an endpoint for the Microsoft Graph API [1] so define it ourselves for now. [1] Azure/go-autorest#585
mbarnes
added a commit
to mbarnes/ARO-RP
that referenced
this issue
Jun 7, 2022
The Azure/go-autorest module does not define an endpoint for the Microsoft Graph API [1] so define it ourselves for now. [1] Azure/go-autorest#585
mbarnes
added a commit
to mbarnes/ARO-RP
that referenced
this issue
Jun 7, 2022
The Azure/go-autorest module does not define an endpoint for the Microsoft Graph API [1] so define it ourselves for now. [1] Azure/go-autorest#585
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the
Environment.GraphEndpoint
corresponds to"https://graph.windows.net/",
(other cloud endpoints follow this format) but the new microsoft graph unified api endpoint is not in this struct. Are there plans to add this? It would be,Environment.GraphEndpoint = "https://graph.microsoft.com/",
(public cloud)Environment.GraphEndpoint = "https://graph.microsoft-ppe.com/",
(ppe)and others for Gov..etc clouds?
The text was updated successfully, but these errors were encountered: