恢复 BLOWERIO_URL
Recover BLOWERIO_URL
说我的胖手指设法将我的 BLOWERIO_URL 设置为无效的东西:
$ heroku config:set BLOWERIO_URL=https://{user:pass}@api.blower.io/ --app recon-trac
我怎样才能恢复正常工作BLOWERIO_URL?
我无法在 Heroku 所谓的 "support" 部分找到任何故障排除指南,而且 Google 也没什么帮助。
当我尝试发送短信时收到“400 错误请求”。之前坏了,改了BLOWERIO_URL修好了,现在又坏了
运行 这个命令打开 Blower.io 的控制面板:
heroku addons:open blowerio --app your-app-name
单击“发送短信”选项卡将显示一个可用于测试的命令。该命令包括 URL:
curl -X POST -d "to=+14155550000&message=This is a test from Blower.io" -H "Accept: application/json" https://12345678-9abc-def0-1234-56789abcdef0:a1B2c3D4e5F6g7H8i9J0k1@api.blower.io/messages
您想复制从 https 到结尾的所有内容,messages.
除外
https://12345678-9abc-def0-1234-56789abcdef0:a1B2c3D4e5F6g7H8i9J0k1@api.blower.io/
现在您可以适当地设置您的 Heroku BLOWERIO_URL:
heroku config:set BLOWERIO_URL=https://12345678-9abc-def0-1234-56789abcdef0:a1B2c3D4e5F6g7H8i9J0k1@api.blower.io/ --app your-app-name
感谢 Blower.io 的 Glenn Gillen 支持让我理顺了。
说我的胖手指设法将我的 BLOWERIO_URL 设置为无效的东西:
$ heroku config:set BLOWERIO_URL=https://{user:pass}@api.blower.io/ --app recon-trac
我怎样才能恢复正常工作BLOWERIO_URL?
我无法在 Heroku 所谓的 "support" 部分找到任何故障排除指南,而且 Google 也没什么帮助。
当我尝试发送短信时收到“400 错误请求”。之前坏了,改了BLOWERIO_URL修好了,现在又坏了
运行 这个命令打开 Blower.io 的控制面板:
heroku addons:open blowerio --app your-app-name
单击“发送短信”选项卡将显示一个可用于测试的命令。该命令包括 URL:
curl -X POST -d "to=+14155550000&message=This is a test from Blower.io" -H "Accept: application/json" https://12345678-9abc-def0-1234-56789abcdef0:a1B2c3D4e5F6g7H8i9J0k1@api.blower.io/messages
您想复制从 https 到结尾的所有内容,messages.
除外https://12345678-9abc-def0-1234-56789abcdef0:a1B2c3D4e5F6g7H8i9J0k1@api.blower.io/
现在您可以适当地设置您的 Heroku BLOWERIO_URL:
heroku config:set BLOWERIO_URL=https://12345678-9abc-def0-1234-56789abcdef0:a1B2c3D4e5F6g7H8i9J0k1@api.blower.io/ --app your-app-name
感谢 Blower.io 的 Glenn Gillen 支持让我理顺了。