problem about intuit-partner-platform-Collection of common programming errors


  • Bruno Buccolo
    intuit-partner-platform quickbooks-online
    Using V3 when I attempt to query for Items I receive a generic error with a SystemFault type.I am attempting to perform Select * From Item Where Name = ‘Something’This does work in the API Explorer, and I believe I am re-creating the HTTP request accurately.My HTTP GET is:GET /v3/company/redacted/query?query=Select%20*%20From%20Item%20Where%20Name%20=%20’Something’%20STARTPOSITION%201%20MAXRESULTS%2020 HTTP/1.1 Accept application/xml Accept-Encoding gzip;q=1.0,deflate;q=0.6,identity;q=0.3 Autho

  • j0k
    intuit-partner-platform
    We have a multi-tenanted/multi-domain app and we’re looking at publishing on IPP. Because of the multi-domain nature our configured endpoints in the App setup are generic and users are then redirected to their specific account once their identity is established.The issue is with C2QB WF3.0.The test steps are:go here: https://appcenter.intuit.com/Home/MyApps/ on the “Launch My Apps” tab, click the appExpected Result:the Sign In screen for the app is displayed The requirement is:if not still sign

  • Manas Mukherjee
    .net intuit-partner-platform intuit x.509 customer-account-data-api
    I am using the Intuit Customer Account data API and have successfully created an x.509 certificate and uploaded. I can use the API explorer properly through Intuit’s website but cannot get the AggCatDotNet example sites to work. In the web.config I have filled in key values SAMLIdentity provider and password but cannot figure out how to access my private key through PrivateKeyPath. I have tried installing in the cert store under personal and machine stores as well as placed it in the App_Data

  • William Lorfing
    console undefined connect intuit-partner-platform intuit
    We are attempting again to get Intuit Anywhere to work. Put together a test web app. Running VisStudio 2010, VB IDE for testing. Win 7/64 pro.When clicking on the Connect To QuickBooks button we get an error in line 132 of intuit.ipp.anywhere.js [dynamic]. JScript runtime error Console is undefinedif(console && console.log) Since this is not our code nor our primary language it is a bit difficult to know what this is or why this is happening?Can someone please explain and tell me what

  • JoshASI
    quickbooks intuit-partner-platform quickbooks-online
    I’ve had success creating objects with POST and Content-Type application/xmlI’ve also had success querying using Content-Type application/x-www-form-urlencoded with a blank request body which returns all of the object type depending on which URI I specify. I can also get the same to work with something like PageNum=1&ResultsPerPage=1 in the request body and I have figured out how to incorporate that into the signature so I get a valid response. However no matter how I format it, I cannot ge

  • Rich MacKillop
    intuit-partner-platform
    I’m trying to query invoices using the .NET IPP DevKit v3. Following all the directions found on the documentation site, I can query invoices and add skip/take/order by/where/etc to the query when using ONLY default fields. But, as soon as I add non-default fields, skip/take/order by/where/etc does NOT seem to work.Here’s the error:System.ArgumentException was unhandledHResult=-2147024809Message=Expression of type ‘System.Collections.Generic.IEnumerable`1[<>f__AnonymousType0`3[Intuit.Ipp

  • user2533396
    intuit-partner-platform
    I am working in .NET, using the QuickBooks V2 API to try and fetch a count of the number of Items the user’s QBD.Does anyone have a working example of how to implement the “RecordCountQuery” class to find the # of Items in QBD?Here is one of my attempt to do so:// // Get a record count of the items // var qbItemsCount = new RecordCountQuery();var myResults = qbItemsCount.ExecuteQuery<Item>(_oQBIDataServices.ServiceContext);Error:Intuit.Ipp.Exception.IdsException was unhandled by user codeH

  • RyanMac
    intuit-partner-platform intuit
    Any idea why when attempting to submit a batch of a customer modifications via IPP .NET DevKit as such:IntuitBatchResponse batchResponse = dataServices.ExecuteBatch<IntuitBatchRequest>(batchRequest);I’m getting thrown from the routine due to an internal unhandled exception instead of just setting the error property on the batch item as it does for all other errors I’ve come across. The error in question is -11209: You can only add or edit one name at a time.What exactly does this even mea

  • obautista
    intuit-partner-platform quickbooks-online
    This is my code:string accessToken = “##”;string accessTokenSecret = “##”; string consumerKey = “##”; string consumerSecret = “##”; string appToken = “##”; string realmId = “##”; //company id in quickbooks onlineOAuthRequestValidator oauthValidator = new OAuthRequestValidator(accessToken, accessTokenSecret, consumerKey, consumerSecret); ServiceContext context = new ServiceContext(oauthValidator, appToken, realmId, IntuitServicesType.QBO);I am receiving: InvalidTokenException was unhandled by use

  • Forrest
    jquery intuit-partner-platform intuit
    Our application loads jQuery 1.10.2 and then loads https://appcenter.intuit.com/Content/IA/intuit.ipp.anywhere.js from Intuit. The anywhere script is adding <script type=”text/javascript” src=”https://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js”></script> to the head and reloading jQuery. This is wiping the namespace and wrecking much of our code. Shouldn’t the script see that jQuery is already loaded? How do we prevent jquery from being reloaded?Thanks, Forrest

  • Forrest
    jquery internet-explorer-10 intuit-partner-platform intuit
    I’m integrating an application with the Intuit IPP program. This requires loading their JS from https://appcenter.intuit.com/Content/IA/intuit.ipp.anywhere.js. This works in every browser expected for IE10 (EDIT: also broken in IE9). This failure happens on Win7 & Win8.The nature of the problem is that it’s removing jQuery. Everything works up until the file is included and all calls to both $ and jQuery fail immediately afterwards. When I say it’s removed: $(document) raises “Object Expecte

  • Manas Mukherjee
    intuit-partner-platform intuit customer-account-data-api
    I keep getting 403 from Intuit AggCat API in response to all requests except getInstitutions and getInstitutionDetails (they return correct data). Has anyone else experienced that? Ruby code excerpt:IntuitIdsAggcat.config(:issuer_id => “…”) IntuitIdsAggcat.config(:oauth_consumer_key => “…”) IntuitIdsAggcat.config(:oauth_consumer_secret => “…”) IntuitIdsAggcat.config(:certificate_path => “…”) IntuitIdsAggcat::Client::Services.delete_customer ‘1’ IntuitIdsAggcat::Client::Serv

  • Michael
    intuit-partner-platform
    During the sign out process, I’m calling intuit.ipp.anywhere.logout and passing it a callback function. The callback function is processed correctly; however, it does not sign out of the app center. Anyone else having similar problems?logout: function (callback) {intuit.ipp.jQuery.ajax({ Uncaught TypeError: Cannot call method ‘ajax’ of undefined (repeated 2 times)url: “https://” + intuit.ipp.anywhere.serviceHost + “/Account/LogoutJSONP?callback=?”,dataType: “jsonp”,complete: function () {callbac

  • Joseph Anderson
    intuit-partner-platform
    I am trying to add a product to QuickBooks, but I get this error:Error:{System.InvalidOperationException: There is an error in XML document (1, 2). —> System.InvalidOperationException: was not expected.at Microsoft.Xml.Serialization.GeneratedAssembly.XmlSerializationReaderFaultInfo.Read3_FaultInfo()— End of inner exception stack trace —at System.Xml.Serialization.XmlSerializer.Deserialize(XmlReader xmlReader, String encodingStyle, XmlDeserializationEvents events)at System.Xml.Serializatio

  • jszigeti
    intuit-partner-platform
    I have built a QuickBooks Online integration using QuickBooks Anywhere. I am using the paid edition of QuickBooks Online, but my customer is using the trial. My app is currently in development mode and has not been approved by the Intuit Marketplace.This code works fine with my site. Does being on a trial of QuickBooks Online mean you can’t write data? My customer was able to pull a list of accounts, vendors, and payment methods just fine.Here is my code:ItemQuery itQuery = new ItemQuery(); itQu

  • T. Postel
    testing credit-card intuit-partner-platform intuit
    I’m new to PayPage, the “Try a Test Transaction” page is down so I can’t cut and paste, or compare a known good bit of xml. I’m using xml that is very like what worked in the “Try a Test Transaction” page last week. I post using LWP in a perl script.I get this response:Unknown error returned by SAX parser.Exception from other package:java.lang.StringIndexOutOfBoundsException: String index out of range: -1I’m posting to:https://webmerchantaccount.ptc.quickbooks.com/j/AppGatewayHere is the xml I’m

Web site is in building