GoogleTranslate.php
[Pman.Core] / GoogleTranslate.php
index a16c5be..0d2e71b 100644 (file)
@@ -39,14 +39,19 @@ 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();
-        curl_setopt($handle,CURLOPT_URL, $url);
-//        curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
+        curl_setopt($handle, CURLOPT_URL, $url);
         curl_setopt($handle, CURLOPT_POST, count($param));
         curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($param));
-        $response = curl_exec($handle);                 
+        curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
+        curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET'));
+        $response = curl_exec($handle);
+        
+        print_r(http_build_query($param));
+        
         $responseDecoded = json_decode($response, true);
         curl_close($handle);