02、获取算力
curl --request POST \
--url https://api.example.com/auth/getMyPowerconst options = {method: 'POST'};
fetch('https://api.example.com/auth/getMyPower', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.example.com/auth/getMyPower"
response = requests.post(url)
print(response.text){
"status": 100,
"message": "操作成功",
"data": 1008583
}{}账户信息
02、获取算力
POST
/
auth
/
getMyPower
02、获取算力
curl --request POST \
--url https://api.example.com/auth/getMyPowerconst options = {method: 'POST'};
fetch('https://api.example.com/auth/getMyPower', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.example.com/auth/getMyPower"
response = requests.post(url)
print(response.text){
"status": 100,
"message": "操作成功",
"data": 1008583
}{}响应
成功
The response is of type object.
最后修改于 2026年7月22日
⌘I

