Update pull-alerts-using-rest-api.md

Fixing numbers that are written as strings in the example.
https://github.com/MicrosoftDocs/windows-itpro-docs/issues/9037
This commit is contained in:
adirdidi 2021-01-29 20:03:13 +02:00 committed by GitHub
parent 2930a4dcd9
commit c31f98e043
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,10 +84,10 @@ The response will include an access token and expiry information.
```json ```json
{ {
"token_type": "Bearer", "token_type": "Bearer",
"expires_in": "3599", "expires_in": 3599,
"ext_expires_in": "0", "ext_expires_in": 0,
"expires_on": "1488720683", "expires_on": 1488720683,
"not_before": "1488720683", "not_before": 1488720683,
"resource": "https://graph.windows.net", "resource": "https://graph.windows.net",
"access_token":"eyJ0eXaioJJOIneiowiouqSuzNiZ345FYOVkaJL0625TueyaJasjhIjEnbMlWqP..." "access_token":"eyJ0eXaioJJOIneiowiouqSuzNiZ345FYOVkaJL0625TueyaJasjhIjEnbMlWqP..."
} }