在 django/python 上访问请求头 [英] accessing request headers on django/python

查看:38
本文介绍了在 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.

如果你想要授权头,你可以做 request.META['HTTP_AUTHORIZATION']

If you wanted the Authorization header, you could do request.META['HTTP_AUTHORIZATION']

如果您正在从头开始创建一个安静的 API,您可能想看看使用 tastypie.

If you're creating a restful API from scratch, you might want to take a look at using tastypie.

这篇关于在 django/python 上访问请求头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆