我正在尝试使用SDK访问Peachtree会计中的公司列表,但我正在获取公司列表,但是当我打开任何一家公司时,其抛出的错误均低于错误。
When application identifier is not supplied, only sample companies can be opened.
下面是代码
companyIdList = apiSession.CompanyList(apiSession.Configuration.ServerName);
if (companyIdList.Count > 0)
{
companyId = companyIdList[0];
//Here i am getting error
AuthResult = apiSession.VerifyAccess(companyId);
}