流程配置相关
This commit is contained in:
@ -55,7 +55,8 @@ public class CoscoProcessEnvServiceImpl extends BaseServiceImpl<CoscoProcessEnvM
|
|||||||
if (paramStr.isEmpty()) {
|
if (paramStr.isEmpty()) {
|
||||||
return baseUrl;
|
return baseUrl;
|
||||||
} else {
|
} else {
|
||||||
String encoded = Base64.getUrlEncoder().withoutPadding().encodeToString(paramStr.getBytes(StandardCharsets.UTF_8));
|
String encoded = Base64.getEncoder()
|
||||||
|
.encodeToString(paramStr.getBytes(StandardCharsets.UTF_8));
|
||||||
return baseUrl + "?code=" + encoded;
|
return baseUrl + "?code=" + encoded;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user