We upgraded our DEV and QA environments to v2024.2.4 and I am now getting Unauthorized when I try to make calls from my code.
We do not have issues in PROD running v2023
using EpicorRESTAPICore v2.2.0.2
using PostMan or the Resthelp seems to run fine.
Anyone else having issues with v2024 and the RestAPI?
if (EpicorRest.CreateBearerToken())
{
MultiMap<string, string> iparams = new MultiMap<string, string>();
iparams.Add("$select", "Company,MfgNum,MfgID,Name,Inactive");
iparams.Add("$top", "10000");
iparams.Add("$skip", $"{skipCount}");
iparams.Add("$count", "false");
var eri = await EpicorRest.BoGetAsync("Erp.BO.ManufacturerSvc", "Manufacturers", iparams);
if (eri.ResponseStatus == System.Net.HttpStatusCode.OK)
{