You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello, I see the code you have added user name and account login, when release version using user name and password,as below:
private String getBasicAuthHeader(){
if (isNotEmpty(this.jobServerUsername) && this.jobServerPassword != null){
return "Basic " + new String(Base64.getEncoder().encode((this.jobServerUsername + ":" + this.jobServerPassword).getBytes()));
}
return null;
}
The text was updated successfully, but these errors were encountered:
hello, I see the code you have added user name and account login, when release version using user name and password,as below:
private String getBasicAuthHeader(){
if (isNotEmpty(this.jobServerUsername) && this.jobServerPassword != null){
return "Basic " + new String(Base64.getEncoder().encode((this.jobServerUsername + ":" + this.jobServerPassword).getBytes()));
}
return null;
}
The text was updated successfully, but these errors were encountered: