Python向PHP發起GET與POST請求

來源:互聯網
上載者:User
CloudBean項目中到PHP開發WEB管理端,用Python開發服務控制端,在項目中Python的服務控制端有時候需要主動串連PHP的WEB管理端下載或上傳配置參數或資料資訊,這裡採用的原理是Python類比Http用戶端,向PHP所在的Apache發起Get或Post請求。

這裡將實現的技術代碼進行公開。


一、Python以GET請求的方式,請求PHP頁面,並獲得傳回值

1、python代碼:

[root@AY python]#cat httpclientget.py #!/usr/bin/env python#coding=utf8import httplibhttpclient=Noneprint 'bb'try:    httpclient=httplib.HTTPConnection('www.xxx.org',80)    httpclient.request('GET','/CloudBean/capture.php?name=liu&pass=wew')    res=httpclient.getresponse()    print res.status    print res.reason    print res.read()except  Exception,e:    print "heelowr"

2、php代碼:
[root@AY python]#cat /CloudBean/capture.php 

二、Python以 Post請求的方式,請求PHP頁面,並獲得傳回值

1、Python代碼:

[root@AY python]#cat httpclientpost.py #!/usr/bin/env python#coding=utf8import httplib,urllibhttpclient=Nonetry:    params = urllib.urlencode({'name': 'tom', 'pass': 22})    print 'aaa'    headers = {"X-CPU": "arm/x86" , "X-USER": "234299044218541","X-RESOLUTION": "240x320","X-SYSTEM":"2.3","X-LANG":"en-us","X-SIGN":"a1ae6bee406a6b8aa0862969ba49cc1d", "X-IMSI":"3110012345678912","X-COUNTRY":"in","X-TIME":"1335339139"}    httpclient=httplib.HTTPConnection('www.xxx.org',80)    httpclient.request('POST','/CloudBean/cappost.php',params,headers)    res=httpclient.getresponse()    print res.status    print res.reason    print res.read()    print res.getheaders()except  Exception,e:    print "error"
2、PHP代碼:

[root@AY python]#cat /CloudBean/cappost.php 
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.