While executing this piece of code, I am getting:
The remote server returned an error: (503) Server Unavailable.
using (WebClient webClient = new WebClient())
{
string sReturnValue = webClient.DownloadString("http://translate.google.com/translate_a/t?client=t&sl=ar&tl=en&ie=UTF-8&oe=UTF-8&q=ok");
}
How can I fix this issue?