Chad Kapatch
Chad Kapatch
We're also seeing this on an .NET 4.7 application
I solved my problem by adding the following line of configuration so that requests are made using TLS 1.2: System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
@mattpawson if you're using an older .NET 4.x project you'll need to ensure that your requests are being sent using TLS 1.2. Add this line to your startup configuration: System.Net.ServicePointManager.SecurityProtocol...
Pulled down the Xero library to debug it locally, found it was using IdentityModel to execute the requests for oauth2. So pulled that library and ran them all locally to...
Looks like it isn't supported which is really disappointing since it's what we'd need to fully move from the previous implementation to the new one. I asked this through the...
Is there any workarounds to this? Can we append a path to the filename to get the full path?
cheers @matt-goldman, I went down this route first, looks like I'll be moving over to CrossMedia as well.