intuit-partner-platform

“Internal Server Error” on QBO Api Update call

此生再无相见时 提交于 2019-12-12 05:22:24
问题 When I send an update request to the QBO V2 api, I get back an 'internal server error' response. These requests used to work; I even have an unchanged unit test from before specifically for this request that no longer works. All of my other request types seem to still be working. Normally QBO gives pretty decent error messages if it's something I messed up with the request. Has anyone else run into a similar issue recently, or have any ideas on what I could be doing that wouldn't result in a

How to get new token after calling reconnect api of Intuit? [duplicate]

时光毁灭记忆、已成空白 提交于 2019-12-12 04:44:48
问题 This question already has answers here : How to call API (Oauth 1.0)? (3 answers) Closed 2 years ago . I wrote the code to reconnect the Intuit. My code is: client.reConnect(INTUIT_QB_OAUTH_CONSUMER_KEY,INTUIT_QB_OAUTH_CONSUMER_SECRET, "accessTOken","accessTokenKeySecret"); I can't be sure about it is working or not. What is the best way to test it? I went through think page of intuit: https://appcenter.intuit.com/Playground/OAuth/IA/ but I don't have so much idea regarding to it. Another

Retrieve users/company information

耗尽温柔 提交于 2019-12-12 04:36:15
问题 On connecting to Quickbook within our app we are able to get access token and realmid but on trying to implement Get App Now we couldn't get any information after redirecting to our openid url. What I have tried so far is define('OAUTH_CONSUMER_KEY', $consumerkey); define('OAUTH_CONSUMER_SECRET', $consumersecret); define('OAUTH_URL', 'https://oauth.intuit.com/'); define('APPCENTER_URL', 'https://appcenter.intuit.com/'); define('OAUTH_REQUEST_URL', OAUTH_URL . 'oauth/v1/get_request_token');

Intuit Anywhere : Invalid Signature Error 401

泪湿孤枕 提交于 2019-12-12 03:57:13
问题 I am tying to fetch Accounts Before a certain date I use the following code TimeZoneInfo pst = TimeZoneInfo.FindSystemTimeZoneById("Pacific Standard Time"); DateTime now = TimeZoneInfo.ConvertTime(new DateTime(2012, 06, 30), pst); accountQuery.CreateTime = now; accountQuery.SpecifyOperatorOption(FilterProperty.CreateTime, FilterOperatorType.BEFORE); accountQuery.PageNumber = 1; accountQuery.ResultsPerPage = 100; string a = Response.ToString(); List<Intuit.Ipp.Data.Qbo.Account> accounts =

Ruby on Rails integration with Quickbooks not working

我的梦境 提交于 2019-12-12 03:17:19
问题 I followed the instructions from this blog, aware that it is quite old. http://minimul.com/integrating-rails-and-quickbooks-online-via-the-version-3-api-part-1.html I successfully get the 'Connect to Quickbooks' button on my web app but on clicking it, I get the following error. NoMethodError in VendorsController#authenticate undefined method `get_request_token' for nil:NilClass The source of the error seems to be this line in my vendors controller authenticate action: token = $qb_oauth

quickbooks vendor credit error message

一世执手 提交于 2019-12-12 02:48:48
问题 When I sent the following XML to QuickBooks Desktop cloud, I received the following error which I don't understand. Googled but didn't find anything relating. Does anyone know what the source column is? error message received: p_validate_txn_ln - unable to find src_column_name_id per ref id acc_id = 39 idDomain = QB <Object xsi:type="VendorCredit"><Header> <DocNumber>8D1FC366607</DocNumber> <TxnDate>2013-09-11</TxnDate> <Note>Expense Report 09/11/2013 #2</Note> <VendorName>E100</VendorName>

Update A Customer in QBO API 3

守給你的承諾、 提交于 2019-12-12 02:47:19
问题 I have tried this however now I am getting a bad request. var customers = IntuitServiceConfig.ServiceManager.FindAll<Customer>(new Customer(), 1, 100); foreach (Intuit.Ipp.Data.Customer customer in customers) { Customer resultCustomer = IntuitServiceConfig.ServiceManager.FindById(customer) as Customer; //Mandatory Fields customer.Id = resultCustomer.Id; customer.SyncToken = resultCustomer.SyncToken; customer.GivenName = "Bob"; customer.Title = "Mr."; customer.MiddleName = "Anto"; customer

Intuit.Ipp.Exception.IdsError while retrieving customers

五迷三道 提交于 2019-12-12 02:44:37
问题 I have a web application using Intuit API V3 written in vb.net. My application has been working flawlessly while using QuickBooks desktop data. I began testing QuickBooks Online data today. The first time I logged in with my QuickBooks Online user it retrieved the customer list. Subsequent tries to retrieve the customer list fail. The error message I receive is: "Fault Exception of type: SystemFault has been generated." Inner Exception: System.Collections.Generic.ICollection(Of Intuit.Ipp

Request for Request Token from Intuit IPP gives permission denied

给你一囗甜甜゛ 提交于 2019-12-11 19:21:28
问题 I am doing this on my local development site without problems. But when I try to setup a new connection to a QuickBooks file from my live site, I get a permission denied error. Here is the error returned: "Post https://oauth.intuit.com/oauth/v1/get_request_token: permission denied" Here are the request headers Content-Type application/x-www-form-urlencoded Authorization OAuth oauth_consumer_key="MY_KEY", oauth_nonce="MY_NONCE", oauth_signature="MY_SIG", oauth_signature_method="HMAC-SHA1",

Intuit Partner Platform - Can't add an invoice because Item ID is unknown

南笙酒味 提交于 2019-12-11 18:36:31
问题 I am trying to insert an invoice via IPP into a blank Quickbooks store. The insert will always fail because the Item's ID for the Invoice line item does not exist. I have been trying multiple paths to code around this with no success. I thought I could query for the Items and if it cannot find the one I am looking for It will create it. I cannot seem to get this to work. Can I just build an Invoice with a new Item I have created? I currently build the invoice like this: (the problem is the