Skip to content
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

Error in the MS-Graph reference example #7103

Closed
fdalmaup opened this issue Mar 5, 2024 · 1 comment · Fixed by #7378
Closed

Error in the MS-Graph reference example #7103

fdalmaup opened this issue Mar 5, 2024 · 1 comment · Fixed by #7378

Comments

@fdalmaup
Copy link
Member

fdalmaup commented Mar 5, 2024

Description

A community user recently found that the example configuration from the MS-Graph reference contains a mistype in the <api_auth> block section. Instead of containing the api_type option, the name of the block is repeated. The error is still present in the master branch:

<api_auth>
<client_id>your_client_id</client_id>
<tenant_id>your_tenant_id</tenant_id>
<secret_value>your_secret_value</secret_value>
<api_auth>global</api_auth>
</api_auth>

And the 4.8.0 branch:

<api_auth>
<client_id>your_client_id</client_id>
<tenant_id>your_tenant_id</tenant_id>
<secret_value>your_secret_value</secret_value>
<api_auth>global</api_auth>
</api_auth>

@RemiOS0456
Copy link

I am community user in question. Linked for visibility.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment