GoogleTranslate.php
[Pman.Core] / GoogleTranslate.php
index 64cb18a..0d48cb4 100644 (file)
@@ -39,15 +39,26 @@ class Pman_Core_GoogleTranslate extends Pman
             'target' => $_REQUEST['dest']
         );
         
-        $url = 'https://www.googleapis.com/language/translate/v2?'.http_build_query($param);
+        $url = 'https://www.googleapis.com/language/translate/v2';
 
-        $handle = curl_init($url);
+        $handle = curl_init();
+        curl_setopt($handle, CURLOPT_URL, $url);
+        curl_setopt($handle, CURLOPT_POST, count($param));
+        curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($param));
         curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
-        $response = curl_exec($handle);                 
-        $responseDecoded = json_decode($response, true);
+        curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET'));
+
+        $response = curl_exec($handle);
+
+        $responseDecoded = json_decode($response);
         curl_close($handle);
-    
-        $this->jdata($responseDecoded);
+        
+        if(!empty($responseDecoded->error)){
+            $this->jerr($responseDecoded->error->message);
+        }
+        prin_tr($responseDecoded);
+        $responseDecoded->data->translations[0]->translatedText = rawurldecode($responseDecoded->data->data->translations[0]->translatedText);
+        $this->jok($responseDecoded->data->translations[0]);
         
     }