我正在创建一个RESTful api。
目前我在POST正文中发送请求:
data = {
'token': token,
'some-data': some_data
}
return requests.post('http://localhost:5000/api/endpoint', data)
我的问题是,如果我在授权标题中发送令牌会更好吗?
这样的事情:
data = {
'some-data':some_data
}
return requests.post('http://localhost:5000/api/endpoint', data, headers=('Authorization: Bearer:%s' % token)