QuickBooks Online

Quickbooks Online Integration In ASP.NET MVC

In this article, we will learn how to integrate Quickbooks Online in ASP.NET MVC Web application.

First, we need to Install “IppDotNetSdkForQuickBooksApiV3” SDK in our application.

Go to Tools > NuGet Package Manager > Manage NuGet Packages For Solutions.

Click on Browse Tab and search for “IppDotNetSdkForQuickBooksApiV3”. Click on search NuGet and click to Install button.

After installation of SDK, Set clientid, clientsecret, redirectUrl, appEnvironment and QboBaseUrl in web.config that we got by configuring Quickbooks online.

<add key="clientid" value="{Your-clientid}"/>
<add key="clientsecret" value="{Your-clientsecret}"/>
<add key="redirectUrl" value="https://localhost:44300/Home/QboCallBack"/>
<add key="appEnvironment" value="sandbox"/>
<add key="QboBaseUrl" value="https://sandbox-quickbooks.api.intuit.com/" />
  • clientid should be your application’s clientid
  • clientsecret should be your application’s clientsecret
  • redirectUrl must be valid redirect url which is already added in Redirect URIs of your Quickbooks application.
  • appEnvironment, it should be “sandbox” or “production”, according to your needs.
  • QboBaseUrl, it is a base url for api call. it is different for “sandbox” and “production”. for sandbox “https://sandbox-quickbooks.api.intuit.com/” and for production “https://quickbooks.api.intuit.com/”

if you don’t know how to configure Quickbooks online, you can find it here

Faisal Pathan

Faisal Pathan is a founder of TheCodeHubs, .NET Project Manager/Team Leader, and C# Corner MVP. He has extensive experience with designing and developing enterprise-scale applications. He has good skills in ASP.NET C#, ASP.NET Core, ASP.NET MVC, AngularJS, Angular, React, NodeJS, Amazon S3, Web API, EPPlus, Amazon MWS, eBay Integration, SQL, Entity Framework, JavaScript, eCommerce Integration like Walmart, Tanga, Newegg, Group-on Store, etc. and Windows services.

View Comments

  • Generally I do not read post on blogs, but I would like to say that this write-up very forced me to try and do so! Your writing style has been surprised me. Thanks, quite nice post.

Recent Posts

Testing hk

Testing

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

Operation

Testing

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

Create and Used PIPE in angular

In this article, we have to show Create and Used PIPE in angular

2 years ago

TETS NEW

test

2 years ago