我正在使用GSuite随附的Google Hangouts for Enterprise。当Google环聊聚会开始时,它会提供带有图钉的拨入号码。
+1 xxxx-xxxx-3235,某些PIN码(3495093#)
我正在尝试使用Twilio语音API通过Twilio语音通话加入这次会议。
curl 'https://api.twilio.com/2010-04-01/Accounts/AC8bc5f1756b2e10ce344333e0ec6f7acacc46/Calls.json' -X POST \
--data-urlencode 'To=+1 xxxx-xxxx-3235' \
--data-urlencode 'From=+1xxxxxxxxxx6' \
--data-urlencode 'Url=https://demo.twilio.com/welcome/voice/' \
--data-urlencode 'SendDigits=wwwww34975093##' \
-u AC8bc5f1756b2e10c824e0ec6f7acacc46:[AuthToken]
通过CURL执行呼叫时,会收到此响应消息
{
"code": 21206,
"message": "Invalid sendDigits: wwwww34975093#",
"more_info": "https://www.twilio.com/docs/errors/21206",
"status": 400
}
我不确定这是怎么回事。我正在使用wwwww向PIN添加半秒钟的等待时间。即使在没有wwwww的情况下传递PIN,也会给我同样的错误。 所以我的问题是,是否有可能通过Twilio加入第三方电话会议。
答案 0 :(得分:3)
有一个隐藏的控制字符:
{“代码”:21206,“消息”:“无效的sendDigits:wwwww34975093# \ u202c #”
删除它,它将起作用。