Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Visual FoxPro) Quickbooks OAuth1 Authorization (3-legged)Demonstrates 3-legged OAuth1 authorization for Quickbooks.
LOCAL lcConsumerKey LOCAL lcConsumerSecret LOCAL lcRequestTokenUrl LOCAL lcAuthorizeUrl LOCAL lcAccessTokenUrl LOCAL lcCallbackUrl LOCAL lnCallbackLocalPort LOCAL loHttp LOCAL lnSuccess LOCAL loReq LOCAL loResp LOCAL loHashTab1 LOCAL lcRequestToken LOCAL lcRequestTokenSecret LOCAL loSbUrlForBrowser LOCAL lcUrlForBrowser LOCAL loListenSock LOCAL lnBackLog LOCAL lnMaxWaitMs LOCAL loTask LOCAL loSock LOCAL lcStartLine LOCAL lcRequestHeader LOCAL loSbResponseHtml LOCAL loSbResponse LOCAL loSbStartLine LOCAL lnNumReplacements LOCAL lcAuthVerifier LOCAL loHashTab2 LOCAL lcAccessToken LOCAL lcAccessTokenSecret LOCAL loJson LOCAL lcRealmId LOCAL lcDataSource LOCAL loFac lcConsumerKey = "QUICKBOOKS_CONSUMER_KEY" lcConsumerSecret = "QUICKBOOKS_CONSUMER_SECRET" lcRequestTokenUrl = "https://oauth.intuit.com/oauth/v1/get_request_token" lcAuthorizeUrl = "https://appcenter.intuit.com/Connect/Begin" lcAccessTokenUrl = "https://oauth.intuit.com/oauth/v1/get_access_token" * The port number is picked at random. It's some unused port that won't likely conflict with anything else.. lcCallbackUrl = "http://localhost:3017/" lnCallbackLocalPort = 3017 * The 1st step in 3-legged OAuth1.0a is to send a POST to the request token URL to obtain an OAuth Request Token * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http') loHttp = CreateObject('Chilkat.Http') loHttp.OAuth1 = 1 loHttp.OAuthConsumerKey = lcConsumerKey loHttp.OAuthConsumerSecret = lcConsumerSecret loHttp.OAuthCallback = lcCallbackUrl * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.HttpRequest') loReq = CreateObject('Chilkat.HttpRequest') loResp = loHttp.PostUrlEncoded(lcRequestTokenUrl,loReq) IF (loHttp.LastMethodSuccess <> 1) THEN ? loHttp.LastErrorText RELEASE loHttp RELEASE loReq CANCEL ENDIF IF (loResp.StatusCode >= 400) THEN ? "Error response status code = " + STR(loResp.StatusCode) ? loResp.BodyStr RELEASE loHttp RELEASE loReq CANCEL ENDIF * If successful, the resp.BodyStr contains this: * oauth_token=-Wa_KwAAAAAAxfEPAAABV8Qar4Q&oauth_token_secret=OfHY4tZBX2HK4f7yIw76WYdvnl99MVGB&oauth_callback_confirmed=true ? loResp.BodyStr * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Hashtable') loHashTab1 = CreateObject('Chilkat.Hashtable') loHashTab1.AddQueryParams(loResp.BodyStr) lcRequestToken = loHashTab1.LookupStr("oauth_token") lcRequestTokenSecret = loHashTab1.LookupStr("oauth_token_secret") loHttp.OAuthTokenSecret = lcRequestTokenSecret RELEASE loResp ? "oauth_token = " + lcRequestToken ? "oauth_token_secret = " + lcRequestTokenSecret * --------------------------------------------------------------------------- * The next step is to form a URL to send to the AuthorizeUrl * This is an HTTP GET that we load into a popup browser. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbUrlForBrowser = CreateObject('Chilkat.StringBuilder') loSbUrlForBrowser.Append(lcAuthorizeUrl) loSbUrlForBrowser.Append("?oauth_token=") loSbUrlForBrowser.Append(lcRequestToken) lcUrlForBrowser = loSbUrlForBrowser.GetAsString() * When the urlForBrowser is loaded into a browser, the response from Quickbooks will redirect back to localhost:3017 * We'll need to start a socket that is listening on port 3017 for the callback from the browser. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Socket') loListenSock = CreateObject('Chilkat.Socket') lnBackLog = 5 lnSuccess = loListenSock.BindAndListen(lnCallbackLocalPort,lnBackLog) IF (lnSuccess <> 1) THEN ? loListenSock.LastErrorText RELEASE loHttp RELEASE loReq RELEASE loHashTab1 RELEASE loSbUrlForBrowser RELEASE loListenSock CANCEL ENDIF * Wait for the browser's connection in a background thread. * (We'll send load the URL into the browser following this..) * Wait a max of 60 seconds before giving up. lnMaxWaitMs = 60000 loTask = loListenSock.AcceptNextConnectionAsync(lnMaxWaitMs) loTask.Run() * At this point, your application should load the URL in a browser. * For example, * in C#: System.Diagnostics.Process.Start(urlForBrowser); * in Java: Desktop.getDesktop().browse(new URI(urlForBrowser)); * in VBScript: Set wsh=WScript.CreateObject("WScript.Shell") * wsh.Run urlForBrowser * in Xojo: ShowURL(url) (see http://docs.xojo.com/index.php/ShowURL) * in Dataflex: Runprogram Background "c:\Program Files\Internet Explorer\iexplore.exe" sUrl * The Quickbooks account owner would interactively accept or deny the authorization request. * Add the code to load the url in a web browser here... * Add the code to load the url in a web browser here... * Add the code to load the url in a web browser here... * System.Diagnostics.Process.Start(urlForBrowser); * Wait for the listenSock's task to complete. lnSuccess = loTask.Wait(lnMaxWaitMs) IF (NOT lnSuccess OR (loTask.StatusInt <> 7) OR (loTask.TaskSuccess <> 1)) THEN IF (NOT lnSuccess) THEN * The task.LastErrorText applies to the Wait method call. ? loTask.LastErrorText ELSE * The ResultErrorText applies to the underlying task method call (i.e. the AcceptNextConnection) ? loTask.Status ? loTask.ResultErrorText ENDIF RELEASE loTask RELEASE loHttp RELEASE loReq RELEASE loHashTab1 RELEASE loSbUrlForBrowser RELEASE loListenSock CANCEL ENDIF * If we get to this point, the connection from the browser arrived and was accepted. * We no longer need the listen socket... * Close it so that it's no longer listening on port 3017. loListenSock.Close(10) * The first thing to do is to get the connected socket. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Socket') loSock = CreateObject('Chilkat.Socket') loSock.LoadTaskResult(loTask) RELEASE loTask * Read the start line of the request.. lcStartLine = loSock.ReceiveUntilMatch(CHR(13) + CHR(10)) IF (loSock.LastMethodSuccess <> 1) THEN ? loSock.LastErrorText RELEASE loHttp RELEASE loReq RELEASE loHashTab1 RELEASE loSbUrlForBrowser RELEASE loListenSock RELEASE loSock CANCEL ENDIF * Read the request header. lcRequestHeader = loSock.ReceiveUntilMatch(CHR(13) + CHR(10) + CHR(13) + CHR(10)) IF (loSock.LastMethodSuccess <> 1) THEN ? loSock.LastErrorText RELEASE loHttp RELEASE loReq RELEASE loHashTab1 RELEASE loSbUrlForBrowser RELEASE loListenSock RELEASE loSock CANCEL ENDIF * The browser SHOULD be sending us a GET request, and therefore there is no body to the request. * Once the request header is received, we have all of it. * We can now send our HTTP response. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbResponseHtml = CreateObject('Chilkat.StringBuilder') loSbResponseHtml.Append("<html><body><p>Chilkat thanks you!</b></body</html>") * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbResponse = CreateObject('Chilkat.StringBuilder') loSbResponse.Append("HTTP/1.1 200 OK" + CHR(13) + CHR(10)) loSbResponse.Append("Content-Length: ") loSbResponse.AppendInt(loSbResponseHtml.Length) loSbResponse.Append(CHR(13) + CHR(10)) loSbResponse.Append("Content-Type: text/html" + CHR(13) + CHR(10)) loSbResponse.Append(CHR(13) + CHR(10)) loSbResponse.AppendSb(loSbResponseHtml) loSock.SendString(loSbResponse.GetAsString()) loSock.Close(50) * The information we need is in the startLine. * For example, the startLine will look like this: * GET /?oauth_token=abcdRQAAZZAAxfBBAAABVabcd_k&oauth_verifier=9rdOq5abcdCe6cn8M3jabcdj3Eabcd HTTP/1.1 * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbStartLine = CreateObject('Chilkat.StringBuilder') loSbStartLine.Append(lcStartLine) lnNumReplacements = loSbStartLine.Replace("GET /?","") lnNumReplacements = loSbStartLine.Replace(" HTTP/1.1","") loSbStartLine.Trim() * oauth_token=qyprdP04IrTDIXtP1HRZz0geQdjXHVlGDxXPexlXZsjZNRcY&oauth_verifier=arx5pj5&realmId=193514465596199&dataSource=QBO ? "startline: " + loSbStartLine.GetAsString() loHashTab1.Clear() loHashTab1.AddQueryParams(loSbStartLine.GetAsString()) lcRequestToken = loHashTab1.LookupStr("oauth_token") lcAuthVerifier = loHashTab1.LookupStr("oauth_verifier") * ------------------------------------------------------------------------------ * Finally , we must exchange the OAuth Request Token for an OAuth Access Token. loHttp.OAuthToken = lcRequestToken loHttp.OAuthVerifier = lcAuthVerifier loResp = loHttp.PostUrlEncoded(lcAccessTokenUrl,loReq) IF (loHttp.LastMethodSuccess <> 1) THEN ? loHttp.LastErrorText RELEASE loHttp RELEASE loReq RELEASE loHashTab1 RELEASE loSbUrlForBrowser RELEASE loListenSock RELEASE loSock RELEASE loSbResponseHtml RELEASE loSbResponse RELEASE loSbStartLine CANCEL ENDIF * Make sure a successful response was received. IF (loResp.StatusCode <> 200) THEN ? loResp.StatusLine ? loResp.Header ? loResp.BodyStr RELEASE loHttp RELEASE loReq RELEASE loHashTab1 RELEASE loSbUrlForBrowser RELEASE loListenSock RELEASE loSock RELEASE loSbResponseHtml RELEASE loSbResponse RELEASE loSbStartLine CANCEL ENDIF * If successful, the resp.BodyStr contains something like this: * oauth_token=12347455-ffffrrlaBdCjbdGfyjZabcdb5APNtuTPNabcdEpp&oauth_token_secret=RxxxxJ8mTzUhwES4xxxxuJyFWDN8ZfHmrabcddh88LmWE ? loResp.BodyStr * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Hashtable') loHashTab2 = CreateObject('Chilkat.Hashtable') loHashTab2.AddQueryParams(loResp.BodyStr) lcAccessToken = loHashTab2.LookupStr("oauth_token") lcAccessTokenSecret = loHashTab2.LookupStr("oauth_token_secret") RELEASE loResp * The access token + secret is what should be saved and used for * subsequent REST API calls. ? "Access Token = " + lcAccessToken ? "Access Token Secret = " + lcAccessTokenSecret * Save this access token for future calls. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.JsonObject') loJson = CreateObject('Chilkat.JsonObject') loJson.AppendString("oauth_token",lcAccessToken) loJson.AppendString("oauth_token_secret",lcAccessTokenSecret) * Also save the realmId and dataSource from hashTab1. lcRealmId = loHashTab1.LookupStr("realmId") ? "realmId = " + lcRealmId lcDataSource = loHashTab1.LookupStr("dataSource") ? "dataSource = " + lcDataSource loJson.AppendString("realmId",lcRealmId) loJson.AppendString("dataSource",lcDataSource) * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.FileAccess') loFac = CreateObject('Chilkat.FileAccess') loFac.WriteEntireTextFile("qa_data/tokens/quickbooks.json",loJson.Emit(),"utf-8",0) ? "Success." RELEASE loHttp RELEASE loReq RELEASE loHashTab1 RELEASE loSbUrlForBrowser RELEASE loListenSock RELEASE loSock RELEASE loSbResponseHtml RELEASE loSbResponse RELEASE loSbStartLine RELEASE loHashTab2 RELEASE loJson RELEASE loFac |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.