#168: Fixed Oauth2 refresh token cycle

This commit is contained in:
frikky
2021-10-21 00:35:47 +02:00
parent ba0dbb5354
commit a250788527
9 changed files with 171 additions and 797 deletions
+8
View File
@@ -95,6 +95,14 @@ const SetAuthentication = (props) => {
if (query[0] === "oauth_url") {
appAuthData.fields.push({"key": "oauth_url", "value": query[1]})
}
if (query[0] === "refresh_uri") {
appAuthData.fields.push({"key": "refresh_uri", "value": query[1]})
}
if (query[0] === "refresh_url") {
appAuthData.fields.push({"key": "refresh_url", "value": query[1]})
}
}
}