最近在學習使用Python,發現網路上很少提到如何使用post,所以下面這篇文章主要給大家介紹了關於Python中用post、get方式提交資料的方法,文中透過範例程式碼介紹的非常詳細,對大家的學習或工作有一定的參考學習價值,需要的朋友們下面來一起看看吧。
前言
最近在使用Python的過程中,發現網路上很少提到在使用post方式時,怎麼傳一個陣列作為參數的範例,這裡根據自己的實作經驗,給出相關範例,下面話不多說了,來一起跟著小編學習學習吧。
範例如下:
#單純的post要求:
def http_post(): url = "http://152.1.12.11:8080/web" postdata = dict(d=2, p=10) post = [] post.append(postdata) req = urllib2.Request(url, json.dumps(post)) #需要是json格式的参数 req.add_header('Content-Type', 'application/json') #要非常注意这行代码的写法 response = urllib2.urlopen(req) result = json.loads(response.read()) print result
需要token時寫法如下:
def http_post(): url = "http://152.1.12.11:8080/web" postdata = dict(d=2, p=10) post = [] post.append(postdata) req = urllib2.Request(url, json.dumps(post)) access_token = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJ1bmlxdWVfbmFtZSI6I..........' req.add_header('Authorization', access_token) #header中添加token req.add_header('Content-Type', 'application/json') #要非常注意这行代码的写法 response = urllib2.urlopen(req) result = json.loads(response.read()) print result
get方式的寫法如下:
def get_access_token(): local_url = 'http://152.1.1.1:8080/web' response = urllib2.urlopen(local_url).read() resp = json.loads(response) print resp
總結
#以上是Python中post與get方式提交資料的程式碼實例分享的詳細內容。更多資訊請關注PHP中文網其他相關文章!