Reputation: 93
Can someone confirm that IBM Watson Language Translation API works from Chinese to English? I can get Language Identify to work, but not Language Translation. Examples:
Language Translation from French to English: $curl -v -u "username:password" "https://gateway.watsonplatform.net/language-translation/api/v2/translate?source=fr&target=en&text=je%20suis%20fou" [response] I'm crazy
Language Translation from Chinese to English: $curl -v -u "username:password" "https://gateway.watsonplatform.net/language-translation/api/v2/translate?source=zh&target=en&text=%E5%8C%97%E4%BA%AC%E5%B8%82" [response] 404 error - cannot find service matching the request database
Upvotes: 0
Views: 721
Reputation: 1787
From the Language Translation documentation:
Today, the basic Language Translator service offers three domain-specific translation models:
Reference: https://www.ibm.com/watson/developercloud/doc/language-translator/
Based on this information, it looks like what you are trying to do is not supported because it would be Conversational.
Upvotes: 0