def test_login_success(): url = "https://test-bc-gateway.baseus.cn/auth/public/login" headers = {"Content-Type": "application/json" } data = {"username": "003831", "password": "003831a@"} response=requests.post(url=url, headers=headers,json=data) # access_token=response.json()["data"]["access_token"] print(response.text)
时间: 2023-12-10 07:03:48 浏览: 126
USB Type-C连接器市场现状及未来发展趋势.docx
这是一段 Python 代码,用于测试登录接口。它使用了 requests 库向指定的 URL 发送了一个 POST 请求,并传递了请求头和请求体数据。具体来说,请求头中指定了内容类型为 JSON,请求体中包含了用户名和密码。接着,代码打印了响应的文本内容。根据代码中注释的提示,可能还需要从响应中获取 access_token。
阅读全文