如何使用设备令牌发送下行消息
How to use the device token to send downlink message
查看官方文档,device_token不能用于hms_server发送下行消息。如果我想访问 hms_server,我必须请求另一个 oauth2 令牌。是指device_token和hms_server_token都应该一直更新,还是只选择device_token这样的一个来发送下行消息?
URL: https://push-api.cloud.huawei.com/v1/appid/messages:send
Request Header:
Authorization Bear token (need to request from hms_server, the device_token is only used for identify the address of device)
device_token
和 access_token
都是必需的。 device_token
由客户端获取并在令牌更改时更新。更改场景请参考此Docs.
access_token
有有效期。当得到access_token
时,返回有效期。一般有效期为一小时。 access_token
在有效期内使用,无需每次更新
查看官方文档,device_token不能用于hms_server发送下行消息。如果我想访问 hms_server,我必须请求另一个 oauth2 令牌。是指device_token和hms_server_token都应该一直更新,还是只选择device_token这样的一个来发送下行消息?
URL: https://push-api.cloud.huawei.com/v1/appid/messages:send
Request Header:
Authorization Bear token (need to request from hms_server, the device_token is only used for identify the address of device)
device_token
和 access_token
都是必需的。 device_token
由客户端获取并在令牌更改时更新。更改场景请参考此Docs.
access_token
有有效期。当得到access_token
时,返回有效期。一般有效期为一小时。 access_token
在有效期内使用,无需每次更新