Nasıl Python benim PHP curl isteği uygulayabilirsiniz

0 Cevap php

Aşağıda bu PHP kodu sunucu A ben bu tarayıcıların aynı etki politikasını aşmak için yaptım sunucu B'ye html getirir. (JQuery en JSONP da bunu başarmak için kullanılabilir, ancak ben bu yöntemi tercih)

<?php
 /* 
   This code goes inside the body tag of server-B.com.
   Server-A.com then returns a set of form tags to be echoed in the body tag of Server-B 
 */
 $ch = curl_init();
 $url = "http://server-A.com/form.php";
 curl_setopt($ch, CURLOPT_URL, $url);
 curl_setopt($ch, CURLOPT_HEADER,FALSE);
 curl_exec($ch);     //   grab URL and pass it to the browser
 curl_close($ch);    //   close cURL resource, and free up system resources
?>

Nasıl Python bu elde edebilirsiniz? Im emin çok Python Curl uygulama var ama oldukça henüz bunu nasıl bilmiyorum.

0 Cevap