django API 中接口的互相调用实例

作者:人生海海may 时间:2023-11-04 09:36:38 

我就废话不多说了,还是直接上代码吧!


url = "http://%s:%s/api-token-auth/" % (ip, port)
query_args = {
 "username": username,
 "password": password
}
resp = requests.post(url=url, data=query_args)
token = json.loads(resp.text)["token"]
headers = {"Authorization": "JWT" + " " + token}  # 拿到token,拼成headers

post_url = "http://%s:%s/message/message-level-two/"% (ip, port)
data = {
 "app": app,
 "url": url,
 "message_id": message_id,
 "head": head,
 "title": title,
 "userprofile_id_list": userprofile_id_list
}
headers = self.headers
requests.post(url=post_url, data=data, headers=headers)

获取当前请求的ip和端口


host_ip, host_port = self.request.META.get("HTTP_HOST").split(':')[0], \
       self.request.META.get("HTTP_HOST").split(':')[1]

常见的请求头如下:

CONTENT_LENGTH – The length of the request body (as a string).
CONTENT_TYPE – The MIME type of the request body.
HTTP_ACCEPT – Acceptable content types for the response.
HTTP_ACCEPT_ENCODING – Acceptable encodings for the response.
HTTP_ACCEPT_LANGUAGE – Acceptable languages for the response.
HTTP_HOST – The HTTP Host header sent by the client.
HTTP_REFERER – The referring page, if any.
HTTP_USER_AGENT – The client's user-agent string.
QUERY_STRING – The query string, as a single (unparsed) string.
REMOTE_ADDR – The IP address of the client.
REMOTE_HOST – The hostname of the client.
REMOTE_USER – The user authenticated by the Web server, if any.
REQUEST_METHOD – A string such as "GET" or "POST".
SERVER_NAME – The hostname of the server.
SERVER_PORT – The port of the server (as a string).

获取请求头内容的用META

示例:


def index(request):
ip = request.META.get("REMOTE_ADDR")
return HttpResponse("你的ip地址是%s"%ip)

http://10.254.30.27/1
self.kwargs[‘pk'] # 可以拿到后边的 1

补充知识:django 使用requests请求相关接口

1、如果是get请求接口,并且需要带相关参数的话,可以借鉴下面的代码:


import requests

from django.http import JsonResponse

def get_info(request):
url = 'http://www.baidu.com'
params = {'id': 1, 'user': 'lin'}
response = requests.get(url=url, params=params)
return JsonResponse(response.text, safe=False)

这样将会返回一串json的字符串数据。

2、如果是post请求接口,并且需要带相关参数的话,可以借鉴下面的代码:


import requests

from json import dumps
from django.http import JsonResponse

def get_info(request):
url = 'http://www.baidu.com'
data = {'id': 1, 'user': 'lin'}
response = requests.post(url=url, data=dumps(data))
return JsonResponse(response.text, safe=False)

注:

(1)、其中必须注意的为data这个参数,必须要用dumps(data)转换一下,不然会报错,response状态码为400,bad request error 400 while using python requests.post function。

(2)、如果需要在post请求底下加相关请求头的话,可以借鉴下面的代码:


import requests

from json import dumps
from django.http import JsonResponse

def get_info(request):
url = 'http://www.baidu.com'
data = {'id': 1, 'user': 'lin'}
headers = {'content-Type': 'application/json', 'Accept': '*/*'}
response = requests.post(url=url, data=dumps(data), headers=headers)
return JsonResponse(response.text, safe=False)

这里如果response的状态码报415错误的话,即HTTP请求415错误 – 不支持的媒体类型(Unsupported media type),这就是content-Type可能写错了,就要注意一下了,因为通常接口会封装一些参数到请求头底下。

来源:https://blog.csdn.net/CodeMonkeyyyyyyy/article/details/87880473

标签:django,API,接口,调用
0
投稿

猜你喜欢

  • python使用matplotlib库生成随机漫步图

    2021-03-01 15:11:37
  • python 图像插值 最近邻、双线性、双三次实例

    2023-01-09 07:48:56
  • SQL Server中使用Linkserver连接Oracle的方法

    2024-01-23 07:35:00
  • Selenium(Python web测试工具)基本用法详解

    2022-08-02 22:04:39
  • 如何基于python3和Vue实现AES数据加密

    2023-08-08 23:47:37
  • Web 设计:实现干净代码的12条定律

    2008-12-04 13:27:00
  • 对Python中 \\r, \\n, \\r\\n的彻底理解

    2022-09-14 07:00:15
  • c++基础语法:虚继承

    2024-01-23 10:01:00
  • Oracle RMAN还原时set newname文件名有空格报错的解决方法

    2024-01-23 18:11:31
  • 浅谈python多线程和多线程变量共享问题介绍

    2022-08-29 04:34:18
  • Python 闭包,函数分隔作用域,nonlocal声明非局部变量操作示例

    2023-07-29 00:03:51
  • python如何统计序列中元素

    2022-03-04 16:32:16
  • 用sysbench来测试MySQL的性能的教程

    2024-01-16 10:56:52
  • Python常用模块之requests模块用法分析

    2023-12-30 15:11:49
  • 蜕变——记QQ医生3.0

    2009-09-16 14:41:00
  • javascript实现页面的实时时钟显示示例

    2024-04-10 10:49:07
  • Python Django框架设计模式详解

    2021-01-16 12:52:40
  • 讲解SQL Server 2005数据库的同义词Bug

    2008-11-28 14:22:00
  • Python的Flask框架应用调用Redis队列数据的方法

    2023-04-20 14:14:38
  • python判断一个变量是否已经设置的方法

    2022-06-09 19:33:15
  • asp之家 网络编程 m.aspxhome.com