如何在Postman中测试StartChatContact API? | “无法确定要授权的服务/操作名称”

发布于 2025-01-14 19:06:40 字数 1634 浏览 1 评论 0原文

我正在尝试从第三方应用程序启动 AWS connect 聊天。我在 Postman 中实现了 StartChatContact,它提供了一个参与者令牌,该令牌将在 CreateParticipantConnection 中进一步使用。

StartChatContact

StartChatContact

Body

{
   "ContactFlowId": "cd1a0465-0a02229-4a1a-9894-fb14945548264",
   "InstanceId": "84ece66549-184a-400f-babf-59888d7c8fd04",
   "ParticipantDetails": { 
      "DisplayName": "Customer"
   }
}

这工作正常并返回参与者令牌。

CreateParticipantConnection

This is throwing error

Body

{
   "ConnectParticipant": true,
   "Type": [ "WebSocket" ]
}

当我将令牌放入 CreateParticipantConnection 中时,它会引发如下错误: 错误

错误

{
    "message": "Unable to determine service/operation name to be authorized"
}

请为我提供宝贵的指导。我正在关注 StartChatContactCreateParticipantConnection 文档。

I am trying to start AWS connect chat from a third-party application. I have implemented StartChatContact in Postman, which gives a participant token that is further used in CreateParticipantConnection.

StartChatContact

StartChatContact

Body

{
   "ContactFlowId": "cd1a0465-0a02229-4a1a-9894-fb14945548264",
   "InstanceId": "84ece66549-184a-400f-babf-59888d7c8fd04",
   "ParticipantDetails": { 
      "DisplayName": "Customer"
   }
}

This is working fine and returns the participant token.

CreateParticipantConnection

This is throwing error

Body

{
   "ConnectParticipant": true,
   "Type": [ "WebSocket" ]
}

When I placed the token in CreateParticipantConnection, it throws an error that is mentioned below:
Error

Error

{
    "message": "Unable to determine service/operation name to be authorized"
}

Kindly provide me your valuable guidance. I am following StartChatContact and CreateParticipantConnection documentations.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蘑菇王子 2025-01-21 19:06:40

我还没有测试过,但我相信类型需要是“WEBSOCKET”而不是“WebSocket”,即它区分大小写。

I haven't tested but I believe the type needs to be "WEBSOCKET" not "WebSocket" i.e. it is case sensitive.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文