Bing AppID is invalid

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) # you can get your AppID at: bing.com/developers 
print bingtrans.translate('hello', 'en', 'ko')
+3
source share
4 answers

I think you should establish your client and client secret, both of them are necessary.

0
source

All Articles