0

I am new to microsoft azure, but good with web api.

I have created web api services, and able to test it from postman tool when it is on localhost. Now I have uploaded my services on azure and now I am not able to call it from postman tool.

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

What do I need to change in services ? Please suggest.

Keval Patel
  • 925
  • 4
  • 24
  • 46

1 Answers1

0

I suggest you to enable debugging mode for your web api service in Azure to see the detailed error message and stacktrace for troubleshooting.

Alternatively, you can also enable Remote Debugging for your web api and set the necessary breakpoint to debug through your web api in Azure.

juvchan
  • 6,113
  • 2
  • 22
  • 35