fix(oauth): correct expires_in data type

This commit is contained in:
Jan De Dobbeleer 2022-07-21 09:54:07 +02:00 committed by Jan De Dobbeleer
parent df8011fc88
commit 7e35ff4fbc

View file

@ -30,9 +30,9 @@ function Auth() {
...
"properties": {
// highlight-start
"access_token":"${params.access_token}",
"refresh_token":"${params.refresh_token}",
"expires_in":"${params.expires_in}"
"access_token": "${params.access_token}",
"refresh_token": "${params.refresh_token}",
"expires_in": ${params.expires_in}
// highlight-end
}
}