Fixed issues with same URL in appcreator - now allowing it with replacements

This commit is contained in:
frikky
2022-01-13 19:04:39 +01:00
parent ff4f4d6722
commit 7ce0559448
3 changed files with 28 additions and 5 deletions
+2 -2
View File
@@ -113,8 +113,8 @@ const AuthenticationOauth2 = (props) => {
var resources = "";
if (scopes !== undefined && (scopes !== null) & (scopes.length > 0)) {
//scopes.push("offline_access")
resources = scopes.join(",");
resources = scopes.join(" ");
//resources = scopes.join(",");
}
const authentication_url = authenticationType.token_uri;