I am trying to use the Bing Translator API for Python, and for some reason, it tells me that I have the wrong AppID. I get an error message:
ArgumentException: invalid appId Parameter
name: appId: ID = [4-digit string] .V2_Json.Translate. [String of 8 digits / letters]
I checked that the identifier I received from the developer center is enabled and that I did not exceed the traffic. I'm still not sure what might be wrong. If someone can give me an answer or a way to fix this, I would really appreciate it.
code example bingtrans :
import bingtrans
bingtrans.set_app_id(YourAppID)
print bingtrans.translate('hello', 'en', 'ko')
source
share