accessing request headers on django/python(在 django/python 上访问请求标头)
问题描述
我需要使用 sencha 和 django 创建一个安全的 restFUL api.我对python相当陌生.到目前为止,我可以使用下面的基本身份验证从 sencha 向服务器发送请求
I need to create a secure restFUL api using sencha and django. I am fairly new to python. So far i am able to send request from sencha to server using basic authentication as below
new Ext.data.Store({
proxy: {
type: "ajax",
headers: {
"Authorization": "Basic asdjksdfsksf="
}
}
})
在 php/apache 中,我可以使用下面的代码轻松访问这些标头
In php/apache i can access those header with ease with the code below
$headers = apache_request_headers();
print_r($headers);
如何在 python 中做到这一点?
How to do this in python?
推荐答案
您可以在视图中使用 request.META 访问它们,这是一个字典.
You can access them within a view using request.META, which is a dictionary.
如果您想要 Authorization 标头,您可以执行 request.META['HTTP_AUTHORIZATION']
If you wanted the Authorization header, you could do request.META['HTTP_AUTHORIZATION']
如果您从头开始创建一个 RESTful API,您可能想看看使用 tastypie.
If you're creating a restful API from scratch, you might want to take a look at using tastypie.
这篇关于在 django/python 上访问请求标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 django/python 上访问请求标头
基础教程推荐
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
