POST请求在localhost上工作但不在azure上工作

时间:2015-07-04 17:05:36

标签: web-services azure asp.net-web-api postmark

我是microsoft azure的新手,但对于web api很好。

我已经创建了web api服务,并且能够在localhost上使用postman工具进行测试。 现在我已经将我的服务上传到azure,现在我无法通过postman工具调用它。

Azure url: not working
http://******.azurewebsites.net/api/account/signIn
body
userName and password... both are string

localhost url: working
http://localhost:62676/api/account/signIn
body
userName and password... both are string

enter image description here

enter image description here

我需要在服务方面做些什么改变?请建议。

1 个答案:

答案 0 :(得分:0)

我建议您为Azure中的web api服务启用调试模式,以查看详细的错误消息和堆栈跟踪以进行故障排除。

或者,您也可以为您的web api启用远程调试,并设置必要的断点以通过Azure中的Web api进行调试。