Rachit95 / google-api-for-dotnet

Automatically exported from code.google.com/p/google-api-for-dotnet
0 stars 0 forks source link

Code 403 Service Abuse after translating some words #57

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
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". 

Can you help us, so that we won't get this exception anymore. At the moment
we are waiting for 10seconds after that we get the exception and try to
continue translating after that.

Thanke you for your help.

Regards Luis

Original issue reported on code.google.com by luis.per...@p3-group.com on 1 Jun 2010 at 8:12

GoogleCodeExporter commented 8 years ago
i have same problem

Original comment by iman.ami...@gmail.com on 11 Dec 2010 at 7:45

GoogleCodeExporter commented 8 years ago
i have same issue.

Original comment by meenamai...@gmail.com on 26 May 2011 at 11:15

GoogleCodeExporter commented 8 years ago
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:

GoogleCodeExporter commented 8 years ago
I have same issue..please give reply.

Original comment by miru.pa...@gmail.com on 5 Sep 2011 at 1:48

GoogleCodeExporter commented 8 years ago
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:

GoogleCodeExporter commented 8 years ago
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

GoogleCodeExporter commented 8 years ago

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

GoogleCodeExporter commented 8 years ago

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