预计结果将得到
System-Provided:
{
"VCAP_SERVICES": {
"speech_to_text": [{
"credentials": {
"url": "<url>",
"password": "<password>",
"username": "<username>"
},
"label": "speech-to-text",
"name": "speech-to-text-service-standard",
"plan": "standard"
}]
}
}
但我得到的确切结果是
Actual Result Image
并且应用程序不能正常工作
发布于 2016-09-27 22:42:07
根据实际结果的输出,您的应用程序没有绑定任何服务。
您必须运行以下命令将servicer绑定到您的应用程序:
cf bind-service speech-to-text-converter speech-to-text-service-standard
https://stackoverflow.com/questions/39727097
复制相似问题