收费标准 
API价格

马上免费试用

暗色

亮色

USER DICTIONARY
删除所有辞典条目
删除所有的用户辞典条目。
此功能可用于T-400引擎, 即时翻译引擎和T-3MT引擎。
Endpoint
Request details
DELETE
https://translate.rozetta-api.io/api/v1/dictionary/dictionary-all
Header
Header
Description
Content-Type
application/json
accessKey, nonce, signature
请参考「加密签名」章节
Request例文
curl -H "nonce: Your Nonce" -H "accessKey: Your Access Key" -H "signature: Your Signature" -H "Content-Type: application/json" -X DELETE https://translate.rozetta-api.io/api/v1/dictionary/dictionary-all
Response
Key
Description
status
成功删除辞典条目后,此栏的值将会是success,否则会是failure。
Limitation
限制
若您使用的是即时翻译引擎,一个句子当中,请避免使用超过3个用户辞典。 示例: "猫"→"Kitty" "犬"→"Marutaro" "ウサギ"→"Peter" "クマ"→"Teddy" 一次的请求当中,发送下列的原文进行翻译 ["これはです。それはです。ウサギクマも動物です。", "ウサギクマも可愛いです。"] 则会取得以下的结果。 ["This is Kitty. It is Marutaro. Both Peter and bears are animals.", "Both Peter and Teddy are cute."] ※第一个句子由于已匹配「猫」、「犬」、「ウサギ」3个用户辞典,「クマ」则不会被匹配。

api/v1/dictionary/dictionary-all
删除所有辞典条目。
JavaScript
const superagent = require('superagent');
const crypto = require('crypto');

const serverConfig = {
    protocol: 'https:',
    hostname: 'translate.rozetta-api.io',
    port: 443
};

const authConfig = {
    accessKey: 'ACCESS_KEY',
    secretKey: 'SECRET_KEY',
    nonce: Date.now().toString()
};

const sendRequest = (serverConfig, authConfig) => {
    const url = '/api/v1/dictionary/dictionary-all';
    const signature = authUtils.generateSignature(
     url,
     authConfig.secretKey,
     authConfig.nonce
   );

    const headers = {
        accessKey: authConfig.accessKey,
        signature,
        nonce: authConfig.nonce,
    };
    return superagent.delete(`${serverConfig.protocol}//${serverConfig.hostname}${url}`)
        .set(headers)
        .then((res) => {
            return res.body;
        }).catch((err) => {
            return err.message;
        });
};

const main = async () => {
    try {
        const response = await sendRequest(serverConfig, authConfig);
        console.log('Server response:');
        console.log(response);
    } catch (error) {
        console.error(error);
    }
};

main();
关于认证方法,请参考「加密签名」章节。
关于各语言完整的示例代码,请参考这裡
©️ 2019 Rozetta API  ・  Powered by Rozetta

Rozetta股份有限公司

^