I have an application that tries to utilize Azure API using Azure SDK for .NET.
First, it uses login.microsoftonline.com to obtain access_token.
I can't see details in Wireshark .pcapng because TLS data is encrypted but it seems that everything is OK.
I have a problem with the next step when the application actually tries to get some data from management.azure.com
It sends Client Hello to management.azure.com but right after this management.azure.com returns [FIN, ACK].
Here is a screenshot from Wireshark:
So everything is fine with TLS handshake for login.microsoftonline.com,
but for management.azure.com Azure closes the connection right after Client Helo.
What could be the reason?
It does not look like a problem with an access token as TLS handshake does not use it as I know.