Sergey
Sergey

Reputation: 49728

Bing Translate API: GetTranslations method not allowed

I'm using an HTTP API for Bing Translate. Such methods as Speak and Translate work perfectly. But GetTranslations doesn't. Any request to http://api.microsofttranslator.com/V2/Http.svc/GetTranslations returns "Method not allowed". What can be the problem?

Upvotes: 0

Views: 881

Answers (1)

sasha
sasha

Reputation: 566

This method is not allowed for 'http'. You can use the 'Ajax' like request below:

http://api.microsofttranslator.com/V2/Ajax.svc/GetTranslations?appId=31C738345474CF52FD6F313331A7B00837031F17&text=rabbit&from=en&to=ru&maxTranslations=5

Upvotes: 2

Related Questions