Python向PHP发起GET与POST请求
程序员文章站
2022-05-26 13:28:12
...
CloudBean项目中到PHP开发WEB管理端,用Python开发服务控制端,在项目中Python的服务控制端有时候需要主动连接PHP的WEB管理端下载或上传配置参数或数据信息,这里采用的原理是Python模拟Http客户端,向PHP所在的Apache发起Get或Post请求。
2、php代码:
二、Python以 Post请求的方式,请求PHP页面,并获得返回值
这里将实现的技术代码进行公开。
一、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
上一篇: php正则验证邮箱的函数
下一篇: 正则表达式求救
推荐阅读
-
PHP get和post向服务器发送请求
-
php curl发起get与post网络请求案例详解
-
速战速决 6 - PHP: 获取 http 请求数据, 获取 get 数据 和 post 数据, json 字符串与对象之间的相互转换
-
Python向PHP发起GET与POST请求
-
PHP get和post向服务器发送请求
-
速战速决 (6) - PHP: 获取 http 请求数据, 获取 get 数据 和 post 数据, json 字符串与对象之间的相互转换 - webabcd
-
速战速决 (6) - PHP: 获取 http 请求数据, 获取 get 数据 和 post 数据, json 字符串与对象之间的相互转换 - webabcd
-
php使用CURL模拟GET与POST向微信接口提交及获取数据的方法
-
php实现模拟GET与POST向微信接口提交数据
-
Angular与PHP之间的不同的请求方式(post/get)导致的传参问题