使用Python生成带参数的GET请求JSON

时间:2016-07-31 03:19:57

标签: python json get

我想知道如何使用两个查询参数向特定网址发出GET请求?这些查询参数包含两个ID号 到目前为止,我有:

import json, requests
url = 'http://'
requests.post(url)

但他们给了我查询参数first_id = ###和last_id = ###。我不知道如何包含这些参数?

1 个答案:

答案 0 :(得分:3)

要发出GET请求,您需要get() method,参数使用params参数:

response = requests.get(url, params={'first_id': 1, 'last_id': 2})

如果响应属于JSON内容类型,则可以使用json()快捷方式将其加载到Python对象中:

data = response.json()
print(data)