21 lines
625 B
Python
21 lines
625 B
Python
import requests
|
|
import time
|
|
headers = {'content-type': 'application/json',"X-TC-Action": 'PullSmsSendStatusByPhoneNumber'}
|
|
|
|
payload = {
|
|
"Action": "PullSmsSendStatusByPhoneNumber",
|
|
"Version": "2021-01-11",
|
|
"Region": "ap-beijing",
|
|
# "BeginTime":time.time(), #用户触发接口的时候
|
|
"BeginTime":1684724400, #用户触发接口的时候
|
|
"Timestamp":1684724400,
|
|
"Offset": 0,
|
|
"Limit": 1,
|
|
"PhoneNumber": "+8613243889782",
|
|
"SmsSdkAppId": "1400808237",
|
|
"EndTime": 1684724400
|
|
}
|
|
r = requests.post("https://sms.tencentcloudapi.com", headers=headers,data=payload)
|
|
|
|
print('rjson',r.json())
|