【项目实训9】各种参数的flask接口测试

目录

本篇文章记录flask测试各种接口(与postman相对应)

最基本的:在Postman中利用body中的raw测试的:

夹带token的:

如果为data类型即用body中的formdata描述:

加了file和data的

配置环境(token)


本篇文章记录flask测试各种接口(与postman相对应)

最基本的:在Postman中利用body中的raw测试的:

json_url2=''
    data2={
        "username": "11111",
        "password": "123456"
        }
    try:
        response = requests.post(json_url2, json=data2)
        print(response.json())
    except  requests.exceptions.RequestException as e:
        print('请求出错:', e)

夹带token的:

json_url2=''
    token = ''
    data2={
        "username": "111111",
        "password": "123456"
        }
    try:
        response = requests.post(json_url2, json=data2,headers=token)
        print(response.json())
    except  requests.exceptions.RequestException as e:
        print('请求出错:', e)

如果为data类型即用body中的formdata描述:

​
json_url2=''
    data2={
        "username": "11111",
        "password": "123456"
        }
    try:
        response = requests.post(json_url2, data=data2)
        print(response.json())
    except  requests.exceptions.RequestException as e:
        print('请求出错:', e)

​

加了file和data的

file = request.files['file']

    # 如果用户没有选择文件
    if file.filename == '':
        return jsonify({"error": "No selected file"}), 400

    if file and allowed_file(file.filename):
        filename = secure_filename(file.filename)
        file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
        file.save(file_path)
        data1 = {
            "stageId": ''
        }
        with open(file_path, 'rb') as f:
            files = {
                'file': (filename, f, 'image/png')  # 根据实际文件类型设置MIME类型
            }
            try:
                print(1)
                response1 = requests.post(json_url1, data=data1, files=files, headers=headers1)
                print(response1.json())
            except  requests.exceptions.RequestException as e:
                print('请求出错:', e)
        return jsonify({"message": "File successfully uploaded", "filename": filename}), 200
    else:
        return jsonify({"error": "File type not allowed"}), 400

配置环境(token)

在Headers中配置

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值