@Peter Cresswell It sounds like you've already done a thorough job troubleshooting your Azure SignalR service setup.
To resolve the 403 issues with your Azure SignalR service, start by ensuring that the Access Control Lists (ACLs) are correctly configured, as misconfigurations can lead to request rejections. Verify that the token's audience (aud
) matches the expected URL, since even a minor mismatch can cause a 403 error. Additionally, check the Cross-Origin Resource Sharing (CORS) settings on your Azure SignalR service, as incorrect CORS settings can result in connection issues. Make sure the client is properly configured to use the access token, as problems with how the token is included in the request can lead to authentication failures. Although you mentioned not seeing anything in the SignalR service diagnostic logs, it’s worth double-checking them for any subtle clues and considering enabling more detailed logging if possible. Lastly, ensure that there are no network security groups or firewalls blocking the requests, as network configurations can sometimes inadvertently block traffic.
If these steps don’t resolve the issue, please reply here as I have one final option to look into.