在授权头中发送我的令牌比在POST正文中发送它更好吗?

时间:2015-11-05 21:25:17

标签: python http post get python-requests

我正在创建一个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)

0 个答案:

没有答案