使用对话对象的缺失元素刷新令牌响应
Refresh token response with missing elements of conversation object
我使用直线很长时间了,但是在刷新令牌时我很困惑。我发送这样的请求:
curl --location --request POST 'https://directline.botframework.com/v3/directline/tokens/refresh' --header 'Authorization: Bearer xxxxx'
并且根据文档 here, it should return a conversation
object (described here), that should contain (amongs others) streamUrl
and referenceGrammarId
(as it does in generate token),但我没有在响应中得到它们,我只得到 conversationId
、token
和 expires_in
,使得处理令牌刷新更加困难。
这是预期的行为,还是那些缺失的属性应该存在?
是的,这是预期的行为,Microsoft 的技术团队说。
我使用直线很长时间了,但是在刷新令牌时我很困惑。我发送这样的请求:
curl --location --request POST 'https://directline.botframework.com/v3/directline/tokens/refresh' --header 'Authorization: Bearer xxxxx'
并且根据文档 here, it should return a conversation
object (described here), that should contain (amongs others) streamUrl
and referenceGrammarId
(as it does in generate token),但我没有在响应中得到它们,我只得到 conversationId
、token
和 expires_in
,使得处理令牌刷新更加困难。
这是预期的行为,还是那些缺失的属性应该存在?
是的,这是预期的行为,Microsoft 的技术团队说。