This commit is contained in:
Leo
2026-01-15 20:38:45 +08:00
parent 7f7bec8d29
commit a41c9ceaf9
4 changed files with 64 additions and 6 deletions

View File

@@ -41,6 +41,9 @@ public class WPS365Config {
/** 刷新Token地址 */
private String refreshTokenUrl = "https://openapi.wps.cn/oauth2/token";
/** OAuth授权请求的scope权限可选如果不配置则使用默认值 */
private String scope;
/**
* 配置初始化后验证
*/
@@ -117,5 +120,13 @@ public class WPS365Config {
public void setRefreshTokenUrl(String refreshTokenUrl) {
this.refreshTokenUrl = refreshTokenUrl;
}
public String getScope() {
return scope;
}
public void setScope(String scope) {
this.scope = scope;
}
}