Open GoogleCodeExporter opened 9 years ago
i have same problem
Original comment by iman.ami...@gmail.com
on 11 Dec 2010 at 7:45
i have same issue.
Original comment by meenamai...@gmail.com
on 26 May 2011 at 11:15
i just finished a vb translator app, when i click on debug for the first time
this message "[response status:403]Suspected terms of service abuse.Please see
http://code.google.com/apis/errors"
what do you mean abuse?just by one click on debug is called abuse?im very
pissed off with this stupid google api.
Original comment by aftereff...@gmail.com
on 31 Aug 2011 at 10:49
Attachments:
I have same issue..please give reply.
Original comment by miru.pa...@gmail.com
on 5 Sep 2011 at 1:48
I have also same issue, but you have to download this version
http://code.google.com/p/google-api-for-dotnet/downloads/detail?name=GoogleTrans
lateAPI_0.3.zip&can=2&q=
Then Add this code to .....your page....i am using asp.net using c#
.......................
string text = "Prashant";
TranslateClient client = new TranslateClient
("http://localhost:2861/WebSite4/Default.aspx");
string translated = client.Translate(text, Language.English, Language.Hindi);
Response.Write(translated);
if you are using Console Application then use this code
using Google.API.Translate;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
string text = "我喜欢跑步。";
TranslateClient client = new TranslateClient("Program.cs");
string translated = client.Translate(text, Language.ChineseSimplified, Language.English);
Console.WriteLine(translated);
}
}
}
Original comment by tomar.pr...@gmail.com
on 20 Sep 2011 at 3:57
Attachments:
I have also same issue.
Please help to me .
Thanks
Alok Kumar Sharma
Original comment by alokmca1...@gmail.com
on 28 May 2012 at 12:38
Hello,
we are using the GoogleTranslateAPI in our C# application.
We need to translate a lot of words into different languages. After some
translations, we get an exception "[response status:403]Suspected Terms of
Service Abuse. Please see http://code.google.com/apis/errors".
[error code:403]Suspected Terms of Service Abuse. Please see
http://code.google.com/apis/errors
Description: An unhandled exception occurred during the execution of the
current web request. Please review the stack trace for more information about
the error and where it originated in the code.
Exception Details: Google.API.GoogleAPIException: [error code:403]Suspected
Terms of Service Abuse. Please see http://code.google.com/apis/errors
Thanke you for your help.
Original comment by alokmca1...@gmail.com
on 28 May 2012 at 12:41
Hi,
Same problem for convert the languages.
[error code:403]Suspected Terms of Service Abuse. Please see
http://code.google.com/apis/errors
Please tell me correct solution.
Original comment by Lavakus...@gmail.com
on 19 Sep 2014 at 5:29
Original issue reported on code.google.com by
luis.per...@p3-group.com
on 1 Jun 2010 at 8:12