2016-07-23 74 views
1

我一直在嘗試註冊一個回撥URL,以便與語音識別服務一起使用,但沒有成功。 我發送了以下POST請求,正文{}和身份驗證。語音識別回撥註冊失敗

https://stream.watsonplatform.net/speech-to-text/api/v1/register_callback?callback_url=https://skaxsqsiq4.execute-api.us-east-1.amazonaws.com/test/watson/callback 

我收到這樣的響應:

{ 
    "code": 400, 
    "code_description": "Bad Request", 
    "error": "unable to verify callback url, challenge_string is missing or incorrect" 
} 

儘管打電話給我的端點自己回聲的挑戰串

curl -XGET https://skaxsqsiq4.execute-api.us-east-1.amazonaws.com/test/watson/callback?challenge_string=12345 

返回:

12345 

回答

1

Watson Speech-to-Text register_callback returns only 400s

此用戶與您使用Speech to Text服務時遇到的問題相同。 Bluemix服務器不支持SSL連接的密碼套件時出錯。

語音識別服務可能存在同樣的問題。 請與您的服務實例中打開了支持票直接在這裏,他們應該能夠解決這個問題:HTTPS:

https://support.ng.bluemix.net/technicalsupport/

+0

您也可以從Bluemix UI中使用這些步驟打開一個支持票//ibm.biz/support_widget_instructions –