收费标准 
API价格

马上免费试用

暗色

亮色

USER DICTIONARY
删除用户辞典条目
删除指定用户辞典条目。
此功能可用于T-400引擎, 即时翻译引擎和T-3MT引擎。
Endpoint
Request details
DELETE
https://translate.rozetta-api.io/api/v1/dictionary/<id>
Path parameter
Path parameter
Description
id
辞典条目ID。
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/12
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/<id>
删除指定用户辞典条目。
Go
JavaScript
func DeleteUserDictionaryEntry(basePath string) {
  apiURL := "/api/v1/dictionary/<ENTRY_ID>"

  client := &http.Client{}
  req, _ := http.NewRequest("DELETE", GetFullUrl(basePath, apiURL), nil)
  res, err := client.Do(req)

  if err != nil {
      fmt.Printf("The HTTP request failed with error %s\n", err)
  } else {
      data, _ := ioutil.ReadAll(res.Body)
      data, _ = prettyprint(data)
      fmt.Println(string(data))
  }
}
关于认证方法,请参考「加密签名」章节。
关于各语言完整的示例代码,请参考这裡
©️ 2019 Rozetta API  ・  Powered by Rozetta

Rozetta股份有限公司

^