Python cURL ile yardım

4 Cevap php

Ben bir sunucuya bir istek göndermek zorunda. Web sitesinin API belgelerinde PHP cURL kullanır bu örnek var:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://api.website.com');
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "request=$wrapper");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
;
$data = curl_exec($ch);
curl_close($ch);

Ama benim app Python kullanılarak yapılır, bu yüzden bu ama bu kod çalışmıyor gibi bir şey yazmak için çalışılmıştır:

req = urllib2.Request(url, formatted)  
response = urllib2.urlopen(req)  
html = response.read()  
print html+"\n\n"  

Bana Python için bir PHP cURL program çalışan bir dönüşümü yazmak yardımcı olabilir misiniz?

Teşekkür ederiz!

4 Cevap

Bu kod, bir GET ve bir POST yapmak ... Bu oldukça utanç verici ama ... urllib ve urllib2 kullanan benim koduyla tek sorun!

Wireshark kullanarak benim tarama burada:

1 - urllib ve urllib2 kullanarak

Hypertext Transfer Protocol
    GET / HTTP/1.1\r\n
        [Expert Info (Chat/Sequence): GET / HTTP/1.1\r\n]
            [Message: GET / HTTP/1.1\r\n]
            [Severity level: Chat]
            [Group: Sequence]
        Request Method: GET
        Request URI: /
        Request Version: HTTP/1.1
    Accept-Encoding: identity\r\n
    Host: api.apptrackr.org\r\n
    Connection: close\r\n
    User-Agent: Python-urllib/2.6\r\n
    \r\n

2 - pycurl kullanılarak

Hypertext Transfer Protocol
    POST / HTTP/1.1\r\n
        [Expert Info (Chat/Sequence): POST / HTTP/1.1\r\n]
            [Message: POST / HTTP/1.1\r\n]
            [Severity level: Chat]
            [Group: Sequence]
        Request Method: POST
        Request URI: /
        Request Version: HTTP/1.1
    User-Agent: PycURL/7.19.5\r\n
    Host: api.website.com\r\n
    Accept: */*\r\n
    Content-Length: 365\r\n
        [Content length: 365]
    Content-Type: application/x-www-form-urlencoded\r\n
    \r\n
Line-based text data: application/x-www-form-urlencoded
    [truncated]         request=%7B%22enc_key%22%3A%22o37vOsNetKgprRE0VsBYefYViP4%2ByB3pjxfkfCYtpgiQ%2ByxONgkhhsxtqAwaXwCrrgx%2BPDuDtMRZNI1ez//4Zw%3D%3D%22%2C%22format%22%3A%22RSA_RC4_Sealed%22%2C%22profile%22%3A%22Ldn%22%2C%22request%22%3A%22bQ%2BHm/

so the code works, but it's not right for me because i need a POST, but i will prefer to use NOT PyCurl. Any idea?

Thank you very much!

http://pycurl.sourceforge.net/: Python için çok kıvrılmış

Örnek bu gibi Python ve pycurl tercüme edilebilir:

import pycurl
c = pycurl.Curl()
c.setopt(pycurl.URL, "http://api.website.com")
c.setopt(pycurl.POST, 1)
c.setopt(pycurl.POSTFIELDS, "request=%s" % wrapper)
import StringIO
b = StringIO.StringIO()
c.setopt(pycurl.WRITEFUNCTION, b.write)
c.perform()
c.close()
data = b.getvalue()

Urllib2 kullanarak Python kodu Tamam görünüyor, bu çalışma olmalıdır. Muhtemelen söz bahsetmiyorlar başka bir şey bir hata var; Eğer daha özel memnun olabilir?

Kodunuzu alarak, bu aslında çalışması gerekir.

 import urllib 
 import urllib2

 url = 'http://api.website.com/' 
 values = {'some_key':'some_value'} 
 data = urllib.urlencode(values) 
 req = urllib2.Request(url, data) 
 response = urllib2.urlopen(req) 
 page = response.read()
 print page + '\n\n'

Eğer alıyorsanız hata nedir?

CURL User-Agent bilgilerini gönderen olmadığını anlamaya bir paket dinleyicisi kullanmayı düşünün. : O, ve hizmet bu bilgileri bekliyor, sonra üzerinde Request (urllib2 belgelerden, sayfanın alt) add_header () yöntemini kullanın

import urllib2
req = urllib2.Request('http://api.website.com/')
# Your parameter encoding here
req.add_header('User-agent', 'Mozilla/5.0')
r = urllib2.urlopen(req)
# Process the response