我正在尝试使用邮递员将POST请求发送到Azure的IoTHub。我的帖子网址是:
https://myhubname.azure-devices.net/messages/deviceBound?api-version=2018-06-30
。在我的Params
中,我有:
key:
api版本,value:
,2018年6月30日。
在我的Headers
中,我有:
key:
授权,value:
“ SAS令牌”
这是我在Body
中收到的错误:
{
"Message": "ErrorCode:ServerError;InternalServerError",
"ExceptionMessage": "Tracking ID:0fe2705819fb432383f0a011879cd453-G:2-
TimeStamp:12/27/2018 21:07:34"
}
我在做什么错了?
答案 0 :(得分:0)
看起来可能是语法问题,您的呼叫缺少设备ID。
https://fully-qualified-iothubname.azure-devices.net/devices/{id}/messages/deviceBound?api-version=2018-06-30
希望这会有所帮助。