min_timesatamp 和 max_timestamp 在 trongridAPI 中不起作用

问题描述 投票:0回答:1

API参考:https://developers.tron.network/reference/get-transaction-info-by-account-address

这是 HTTP 请求:

headers = {
    'Content-Type': "application/json",
    'TRON-PRO-API-KEY':api_key
}
response = requests.get(f"https://api.trongrid.io/v1/accounts/{address}/transactions?min_timestamp={min_timestamp}", headers=headers)

其中 min_timestamp:

min_timestamp="2024-11-01T04:30:00Z"

min_timestamp="1730558155"

他们都没有工作

python tron tronweb
1个回答
0
投票

时间戳应以毫秒为单位提供,文档中未提及

示例:

min_timestamp="1730558155000"

© www.soinside.com 2019 - 2024. All rights reserved.