Reputation: 4431
I want to translate a word in my app. First I wanted to use Google Translate but I saw Google Translate's API is not free. So I tried to use Bing Translator, I followed this tutorial, but in step 3 I can't find "Get started by applying for an AppId now". So how can I create an appID?
Upvotes: 1
Views: 2678
Reputation:
There are very few translation API's available for free. Google translate API's is also not free, but google translate API is the cheapest and easy to use. It charges $20 for 1M characters and supports many languages. You can look at more information here,
https://developers.google.com/translate/v2/getting_started.
Thanks.
Upvotes: 0
Reputation: 303
Seems the sample app on github doesnt support the new authentication Azure marketplace token that bing translator is now using. I downloaded it and it doesnt work, just returns "invalid appid" error all the time. You cant even get app ID anymore from microsoft.
Upvotes: 0
Reputation: 11
The above information is mostly correct except for it not being free part. There is a free tier of service still available via Bing/Microsoft translator. When you go through the subscription process, simply choose the free tier.
Upvotes: 1
Reputation: 23186
It looks like the Bing Translate API has been renamed as Microsoft Translator.
That page reads:
Developers with existing AppIDs can continue using Bing Search API 2.0 until August 1, 2012. On and after this date, Bing Search API 2.0 AppIDs will no longer return results. Developers can continue using the API by signing up for it in the Windows Azure Marketplace. Read the Migration Guide and FAQs to get started.
So it looks like you have to sign up for the Windows Azure Marketplace if you want to continue using the Bing APIs.
You can find the Microsoft Translator on the Azure marketplace at this link. By the looks of it, it doesn't look like its free either. This link has what looks like the API documentation. Also check this related question on SO.
There is a project on Github which offers a client to the API for iOS.
Upvotes: 4