add: 火山引擎AK/SK凭证

This commit is contained in:
yumoqing 2026-05-29 13:28:34 +08:00
parent 1264a6a2fa
commit 39f98a7136
2 changed files with 2 additions and 3 deletions

Binary file not shown.

View File

@ -23,15 +23,14 @@ INSERT INTO rl_vendor_config (id, vendor, vendor_title, upappid, api_mapping, st
update_time=NOW(); update_time=NOW();
-- 2. API密钥 (upappkey) -- 2. API密钥 (upappkey)
-- ⚠️ 替换 <YOUR_ACCESS_KEY> 和 <YOUR_SECRET_KEY> 为火山引擎实际凭证
-- callerid = vendor = 'volcengine',与 rl_vendor_config.vendor 对应 -- callerid = vendor = 'volcengine',与 rl_vendor_config.vendor 对应
INSERT INTO upappkey (id, upappid, ownerid, myappid, apikey, secretkey) VALUES ( INSERT INTO upappkey (id, upappid, ownerid, myappid, apikey, secretkey) VALUES (
'volcengine_ark_key', 'volcengine_ark_key',
'volcengine_ark', 'volcengine_ark',
'0', '0',
'volcengine', 'volcengine',
password_encode('<YOUR_ACCESS_KEY>'), password_encode('AKLTZWE5YTY1MDRhMmIyNGFlN2JkMzBjN2U0NGFkMWQ5ODM'),
password_encode('<YOUR_SECRET_KEY>') password_encode('TURFMU9ESTBNamc1TW1JMk5HVmpORGczT1dNeE0yVTRabVV4TVRJeFpUWQ==')
) ON DUPLICATE KEY UPDATE ) ON DUPLICATE KEY UPDATE
apikey=VALUES(apikey), apikey=VALUES(apikey),
secretkey=VALUES(secretkey); secretkey=VALUES(secretkey);