new file: .vscode/settings.json
modified: app.py
This commit is contained in:
parent
595c204918
commit
cfcde16e95
20
.vscode/settings.json
vendored
Normal file
20
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"MicroPython.executeButton": [
|
||||||
|
{
|
||||||
|
"text": "▶",
|
||||||
|
"tooltip": "运行",
|
||||||
|
"alignment": "left",
|
||||||
|
"command": "extension.executeFile",
|
||||||
|
"priority": 3.5
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"MicroPython.syncButton": [
|
||||||
|
{
|
||||||
|
"text": "$(sync)",
|
||||||
|
"tooltip": "同步",
|
||||||
|
"alignment": "left",
|
||||||
|
"command": "extension.execute",
|
||||||
|
"priority": 4
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
6
app.py
6
app.py
@ -21,7 +21,7 @@ def send_custom_json(ida):
|
|||||||
"nonce": nonce
|
"nonce": nonce
|
||||||
},
|
},
|
||||||
"params": {
|
"params": {
|
||||||
"token": "At_0000hz7d3dcf1dbd884b4ba94a26c621",
|
"token": "At_0000hz6cc6b1e0444c4b848d5ad85927",
|
||||||
"deviceId": "9F01FD3PAZ9B6B4",
|
"deviceId": "9F01FD3PAZ9B6B4",
|
||||||
"channelId": "0",
|
"channelId": "0",
|
||||||
"operation": ida,
|
"operation": ida,
|
||||||
@ -32,16 +32,12 @@ def send_custom_json(ida):
|
|||||||
target_url = 'https://openapi.lechange.cn:443/openapi/controlMovePTZ'
|
target_url = 'https://openapi.lechange.cn:443/openapi/controlMovePTZ'
|
||||||
headers = {'Content-Type': 'application/json'}
|
headers = {'Content-Type': 'application/json'}
|
||||||
try:
|
try:
|
||||||
# 将自定义JSON数据转换为字符串
|
|
||||||
json_payload = json.dumps(custom_json)
|
json_payload = json.dumps(custom_json)
|
||||||
|
|
||||||
# 发送POST请求到外部API
|
|
||||||
response = requests.post(target_url, data=json_payload, headers=headers)
|
response = requests.post(target_url, data=json_payload, headers=headers)
|
||||||
|
|
||||||
# 检查请求是否成功
|
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
print('Request sent successfully')
|
print('Request sent successfully')
|
||||||
# 返回目标API的响应给客户端
|
|
||||||
return jsonify(response.json())
|
return jsonify(response.json())
|
||||||
else:
|
else:
|
||||||
print(f'Failed to send request, status code: {response.status_code}')
|
print(f'Failed to send request, status code: {response.status_code}')
|
||||||
|
Loading…
Reference in New Issue
Block a user