1. Security (安全性验证)
Basics
All communication must be performed via encrypted channels using HTTPS protocol. Plain connections are not accepted.
所有请求交互皆须使用HTTPS。
Authentication (验证)
Authentication requires two values to be placed in the header, which are the authentication certificate and the timestamp when the request is sent. The details are as follows
身分验证需有两个值置入标头,分别为身分验证凭证及发送请求当下的时间戳记,具体内容如下。
Authorization: Basic dGVzdDp0ZXN0==
xts: 2022-10-14T23:00:00.000+0800
Notice (注意)
上述xts时间格式请参考范例中时间格式(yyyy-MM-dd'T'HH:mm:ss.SSSZ)
Encryption (加密方式)
This header carries Base64-encoded pair of client_id:client_secret as username:password client_id and client_secret will be provided by us separately
使用HTTP Basic认证进行身分验证,具体格式为client_id:client_secret。
client_id與client_secret将由我方另外提供。
