Sunday 24 April 2016

INTUIT JAVA API: AUTHORIZATION (JAVA TO QUICKBOOKS ONLINE INTEGRATION)

Dear All,

The following content is intended to demonstrate INTUIT API AUTHORIZATION in a simplified way:


Note: This tutorial assumes that you have already registered in https://developer.intuit.com
and created and and registered new app. So you must be having 'Oauth Consumer Key' & 'Oauth Consumer Secret'.

Outlined Steps: 

  • Get REQUEST TOKEN, REQUEST TOKEN SECRET & Authorization URL.
  • Go to Authorization URL select the company to be authorised and click Authorize button.
  • Get OAUTH VERIFIER CODE post authorization (after autorization button is clicked) through a GET request from Intuit API server.
  • Get ACCESS TOKEN and ACCESS TOKEN SECRET using
    OAUTH VERIFIER CODE,
    REQUEST TOKEN & REQUEST TOKEN SECRET.
  • Create DateService object using 'Oauth Consumer Key', 'Oauth Consumer Secret', ACCESS TOKEN, ACCESS TOKEN SECRET & Company id (a.k.a Realm id).

CLICK HERE FOR BASIC SAMPLE CODES