Chinaunix首页 | 论坛 | 博客
  • 博客访问: 633799
  • 博文数量: 356
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 2287
  • 用 户 组: 普通用户
  • 注册时间: 2013-04-08 17:08
文章分类

全部博文(356)

文章存档

2023年(3)

2022年(7)

2021年(33)

2020年(47)

2019年(36)

2018年(221)

2017年(1)

2015年(1)

2013年(7)

我的朋友

分类: LINUX

2020-03-17 15:42:30

ats post nginx

ats ip_allow.config  放行post请求

nginx搭建
nginx-upload-module

415 错误,因为脚本没有加上,boundary   ,
multipart/form-data; boundary=---------------------------7e42a033d209a

#!/usr/bin/python
# -*- coding: utf-8 -*-
 
import os.path
import requests
import hashlib
 
# 待上传文件路径
FILE_UPLOAD = "/opt/ats/test2.mp4"
# 上传接口地址
#UPLOAD_URL = ""
UPLOAD_URL = ""
# 单个片段上传的字节数
SEGMENT_SIZE = 1048576
proxies = {'http': ''}
def upload(fp, file_pos, size, file_size):
    session_id = get_session_id()
    fp.seek(file_pos)
    payload = fp.read(size)
 
    content_range = "bytes {file_pos}-{pos_end}/{file_size}".format(file_pos=file_pos,
                    pos_end=file_pos+size-1,file_size=file_size)
    headers = {'Content-Disposition': 'attachment; filename="big.txt"',
               'Content-Type': ' multipart/form-data; boundary=---------------------------7e42a033d209a',
                'X-Content-Range':content_range,'Session-ID': session_id,'Content-Length': size}
    res = requests.post(UPLOAD_URL, data=payload, headers=headers,proxies=proxies)
    print(res.text)
 
 
# 根据文件名hash获得session id
def get_session_id():
    m = hashlib.md5()
    file_name = os.path.basename(FILE_UPLOAD)
    m.update(file_name)
    return m.hexdigest()
 
def main():
    file_pos = 0
    file_size = os.path.getsize(FILE_UPLOAD)
    fp = open(FILE_UPLOAD,"r")
 
    while True:
        if file_pos + SEGMENT_SIZE >= file_size:
            upload(fp, file_pos, file_size - file_pos, file_size)
            fp.close()
            break
        else:
            upload(fp, file_pos, SEGMENT_SIZE, file_size)
            file_pos = file_pos + SEGMENT_SIZE
 
if __name__ == "__main__":
    main()

400错误 ,nginx 没有创建目录,error.log

阅读(762) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~