Search K
Appearance
Appearance
This guide is intended to help identify and resolve issues with Autodesk Platform Services (APS) OAuth authentication when MinuteView is installed on a client’s server (IIS-hosted, non-public URL).
Goal: Ensure the user’s browser can reach the redirect URL after Autodesk login.
Check IIS binding
https://<servername>/MinuteView/PageGeneral/ServiceCallback.aspx
).From the server itself
From a client workstation (inside the same LAN)
Common blockers
Goal: Ensure APS and MinuteView agree on the exact redirect URI.
Log into Autodesk Developer Portal.
In the App settings, confirm that the Redirect URI matches exactly:
https
vs http
)server.company.com
vs localhost
)/MinuteView/oauth/callback
)⚠️ Even a trailing slash mismatch will cause failure.
Open Developer Tools → Network while signing in.
Observe the final 302
or Location
header Autodesk sends.
Copy the URL.
Goal: Confirm the server can reach Autodesk’s token endpoint.
After the user lands at /MinuteView/oauth/callback?code=xxxx
, MinuteView exchanges the code for a token by POSTing to:
https://developer.api.autodesk.com/authentication/v2/token
On the server:
curl -X POST "https://developer.api.autodesk.com/authentication/v2/token" `
-H "Content-Type: application/x-www-form-urlencoded" `
-d "client_id=XXX&client_secret=YYY&grant_type=authorization_code&code=TESTCODE&redirect_uri=https://<servername>/MinuteView/PageGeneral/ServiceCallback.aspx"
For more information, refer to Autodesk Platform services documentation
Expected: JSON with access_token
.
If it fails:
netsh winhttp show proxy
).On a user’s PC, the redirect normally succeeds if the PC can resolve and reach the internal site.
On a server, the redirect also works (since it’s just a browser operation), but sometimes servers are more restricted:
âś… Recommendation: Always test both from the server browser and from a user PC browser to confirm whether the issue is server-specific or network-wide.
Check redirect URL accessibility (server + client PC).
Verify Autodesk app redirect URI configuration.
Use browser dev tools to capture the final redirect.
Manually test token exchange from the server with curl/PowerShell.
Confirm SSL certs are valid/trusted.
Check firewall/proxy logs for blocked traffic.
If still failing, escalate to IT security with domains to whitelist:
developer.api.autodesk.com
accounts.autodesk.com