我是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
我需要在服务方面做些什么改变?请建议。
答案 0 :(得分:0)
我建议您为Azure中的web api服务启用调试模式,以查看详细的错误消息和堆栈跟踪以进行故障排除。
或者,您也可以为您的web api启用远程调试,并设置必要的断点以通过Azure中的Web api进行调试。