phil000
phil000
Here are the variables set in the Azure environment: MSI_ENDPOINT = http://127.0.0.1:41538/MSI/token/ IMDS_ENDPOINT (not present) AZURE_POD_IDENTITY_AUTHORITY_HOST (not present)
I've enabled AzureEventSourceListener diagnostics logging while using **Azure.Identity 1.6.1**, and this is what I got. Reverting back to **Azure.Identity 1.5.0** and this all works fine, with no exception occurring. 3...
From the above logging it seemed the 'EnvironmentCredential' was having an issue -> CredentialUnavailableException - "Environment variables are not fully configured". After _excluding_ environmental credentials we still are unable to...
Some environmental variables that are set in the functions environment: IDENTITY_ENDPOINT = http://127.0.0.1:41538/MSI/token/ IDENTITY_HEADER = 78xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx MSI_ENDPOINT = http://127.0.0.1:41538/MSI/token/ MSI_SECRET = 78xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx 'IDENTITY_HEADER' and 'MSI_SECRET' have the same value. Poking...
Hello @christothes We have been using system managed identities for about a year now. Having a look I think this is what may have happened: We started Azure Functions using...
Here is when it has occurred, in the last 30 days: 2/20/2024, 10:12:07.3756086 AM (Local time) 2/28/2024, 7:26:24.4069928 AM (Local time) 2/28/2024, 7:27:14.9976902 AM (Local time) 2/29/2024, 6:00:58.8381496 PM (Local...
Possibly the issue here? In DefaultExceptionFactory if the status code is 0 you get null returned. I've see this happen (0 status code) when the issue is in the .Xero.NetStandard.OAuth2.Client.ApiClient...
So we've started using the client methods ending in "WithHttpInfo" to gather a bit more information from the returned ApiResponse. What we see when null is returned is that the...
We have noted that while the documentation states: _"When the file name includes special characters, the characters should not be encoded unless they're brackets. Brackets must be encoded in order...
Yes, FYI the answer is to use **System.Uri.EscapeDataString** that escapes spaces as "%20" System.Net.WebUtility.UrlEncode encodes spaces as '+' which does not work.