Merge pull request #1279 from feitianbubu/add-kling-key-placeholder
feat: add placeholder for kling AccessKey and SecretKey
This commit is contained in:
@@ -69,8 +69,8 @@ func (a *TaskAdaptor) Init(info *relaycommon.TaskRelayInfo) {
|
|||||||
a.ChannelType = info.ChannelType
|
a.ChannelType = info.ChannelType
|
||||||
a.baseURL = info.BaseUrl
|
a.baseURL = info.BaseUrl
|
||||||
|
|
||||||
// apiKey format: "access_key,secret_key"
|
// apiKey format: "access_key|secret_key"
|
||||||
keyParts := strings.Split(info.ApiKey, ",")
|
keyParts := strings.Split(info.ApiKey, "|")
|
||||||
if len(keyParts) == 2 {
|
if len(keyParts) == 2 {
|
||||||
a.accessKey = strings.TrimSpace(keyParts[0])
|
a.accessKey = strings.TrimSpace(keyParts[0])
|
||||||
a.secretKey = strings.TrimSpace(keyParts[1])
|
a.secretKey = strings.TrimSpace(keyParts[1])
|
||||||
@@ -264,7 +264,7 @@ func (a *TaskAdaptor) createJWTToken() (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (a *TaskAdaptor) createJWTTokenWithKey(apiKey string) (string, error) {
|
func (a *TaskAdaptor) createJWTTokenWithKey(apiKey string) (string, error) {
|
||||||
parts := strings.Split(apiKey, ",")
|
parts := strings.Split(apiKey, "|")
|
||||||
if len(parts) != 2 {
|
if len(parts) != 2 {
|
||||||
return "", fmt.Errorf("invalid API key format, expected 'access_key,secret_key'")
|
return "", fmt.Errorf("invalid API key format, expected 'access_key,secret_key'")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -64,6 +64,8 @@ function type2secretPrompt(type) {
|
|||||||
return '按照如下格式输入:AppId|SecretId|SecretKey';
|
return '按照如下格式输入:AppId|SecretId|SecretKey';
|
||||||
case 33:
|
case 33:
|
||||||
return '按照如下格式输入:Ak|Sk|Region';
|
return '按照如下格式输入:Ak|Sk|Region';
|
||||||
|
case 50:
|
||||||
|
return '按照如下格式输入: AccessKey|SecretKey';
|
||||||
default:
|
default:
|
||||||
return '请输入渠道对应的鉴权密钥';
|
return '请输入渠道对应的鉴权密钥';
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user