我在自定义函数中使用requests
库:
def add_advert(self, json_data):
headers = {'Content-Type': 'application/json'}
return requests.post(self.base_url + self.api_urls["add_advert"],
json=json_data, headers=headers,
auth=(self.api_key, ''))
并调用此函数:
response = api.add_advert(json_data=json_data)
如何显示变量response
的内容?
我尝试过:打印response.content
,打印response.json
答案 0 :(得分:0)
假设"内容"您要显示的是响应有效负载... response.text
或
response.json()
- .json
是一个函数(假定json有效负载)