Hi all,
I have set Postman Desktop to connect with my local Dev VM and already running well. So basically I want to try run my custom API with this Postman. It was something like below:
While it was running just fine, I currently change my local DB connection to my Tier-2 database. So when I'm calling http:////usconebox... the data being used and displayed is from my local SQL anymore, instead from Azure SQL (from my Tier-2 F&O installation). This being done after changing my Web.config to the Tier-2 SQL database. I changed these :
<add key=”DataAccess.Database” value=”<example_axdb_fromAzure>” />
<add key=”DataAccess.DbServer” value=”<example_axdb_server.database.windows.net>” />
<add key=”DataAccess.SqlPwd” value=”<password_from_LCS-request access>” />
<add key=”DataAccess.SqlUser” value=”user_from_LCS-request access” />
Problem now is in Postman I'm getting /403 - Forbidden/ error. May I know what authorization this Postman referring to ?
The error message accompany the 403 error code is below:
/Message/: /Please verify that the user is valid and set up correctly./
Btw, for the token is retrieved successfully, so it is not about no token, beside it is usually will be 401 Unauthorized error instead.
Thanks.