码迷,mamicode.com
首页 > Windows程序 > 详细

API

时间:2017-10-02 00:21:08      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:.text   客户端   int   blog   html   ext   ade   nbsp   htm   

API

 

1.在请求头中加入key

server 给客户端发一个key 

client (key)

服务端在client请求中看是否有key,如果有就是正常客户端没有就是非正常客户端

 

client.py
import requests
key="qwrwertyuiop"

response = requests.get("http://127.0.0.1:8000/api/test.html",header={‘auth-api‘:key})
print(response.text)
server.py
from django.http import HttpResponse

key="qwrwertyuiop"
def test(request):
    client_key=request.META.get("HTTP_AUTH_API")
    if client_key == key:
        return HttpResponse("you get me")
    else:
        return HttpResponse("no")

  

  

 

API

标签:.text   客户端   int   blog   html   ext   ade   nbsp   htm   

原文地址:http://www.cnblogs.com/morgana/p/7618306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!