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
(PowerBuilder) Xero 2 Legged OAuth for Private ApplicationThis example demonstrates the REST object for 2-legged OAuth for a private application. Note: This example requires Chilkat v9.5.0.64 or later. An application can setup OAuth1 for a given instance of the Chilkat REST object, and then use the instance for many REST API calls. This example demonstrates the OAuth1 setup and initial connection. This code would typically be placed in a subroutine/function to "initalize" the REST object before beginning to use it for REST HTTP requests. Note: Xero private applications use 2 legged OAuth and bypass the user authorization workflow in the standard OAuth process. Private applications are linked to a single Xero organisation which is chosen when you register your application. In summary: 2-legged OAuth1 is for applications that access the data that they themselves own.
integer li_rc oleobject loo_Rest string ls_ConsumerKey string ls_ConsumerSecret oleobject loo_Pfx integer li_Success oleobject loo_PrivKeyFromPfx oleobject loo_PrivKeyFromPem oleobject loo_Oauth1 integer li_BAutoReconnect // This example requires Chilkat v9.5.0.64 or later // This sample code would typically be placed in a subroutine or function // where the rest object is passed by reference. // It does the OAuth1 setup and makes the initial connection. loo_Rest = create oleobject // Use "Chilkat_9_5_0.Rest" for versions of Chilkat < 10.0.0 li_rc = loo_Rest.ConnectToNewObject("Chilkat.Rest") if li_rc < 0 then destroy loo_Rest MessageBox("Error","Connecting to COM object failed") return end if ls_ConsumerKey = "XERO_PRIVATE_APP_KEY" ls_ConsumerSecret = "XERO_PRIVATE_APP_SECRET" // Let's get our private key from our PFX (password protected), or the PEM (unprotected). // You can decide which to use. Either is OK, although I would recommend keeping your // private keys in a PFX and not in an unprotected PEM. loo_Pfx = create oleobject // Use "Chilkat_9_5_0.Pfx" for versions of Chilkat < 10.0.0 li_rc = loo_Pfx.ConnectToNewObject("Chilkat.Pfx") li_Success = loo_Pfx.LoadPfxFile("qa_data/certs/xero_private_app/public_privatekey.pfx","PFX_PASSWORD") if li_Success <> 1 then Write-Debug loo_Pfx.LastErrorText destroy loo_Rest destroy loo_Pfx return end if loo_PrivKeyFromPfx = loo_Pfx.GetPrivateKey(0) if loo_Pfx.LastMethodSuccess <> 1 then Write-Debug loo_Pfx.LastErrorText destroy loo_Rest destroy loo_Pfx return end if // Or we can load from a PEM.. loo_PrivKeyFromPem = create oleobject // Use "Chilkat_9_5_0.PrivateKey" for versions of Chilkat < 10.0.0 li_rc = loo_PrivKeyFromPem.ConnectToNewObject("Chilkat.PrivateKey") li_Success = loo_PrivKeyFromPem.LoadPemFile("qa_data/certs/xero_private_app/privatekey.pem") if li_Success <> 1 then Write-Debug loo_PrivKeyFromPem.LastErrorText destroy loo_Rest destroy loo_Pfx destroy loo_PrivKeyFromPem return end if // Note: There are many other means for loading a private key, including // from other formats and directly from memory (i.e. not file-based). loo_Oauth1 = create oleobject // Use "Chilkat_9_5_0.OAuth1" for versions of Chilkat < 10.0.0 li_rc = loo_Oauth1.ConnectToNewObject("Chilkat.OAuth1") loo_Oauth1.ConsumerKey = ls_ConsumerKey loo_Oauth1.ConsumerSecret = ls_ConsumerSecret loo_Oauth1.Token = ls_ConsumerKey loo_Oauth1.TokenSecret = ls_ConsumerSecret loo_Oauth1.SignatureMethod = "RSA-SHA1" loo_Oauth1.SetRsaKey(loo_PrivKeyFromPfx) destroy loo_PrivKeyFromPfx // Make the initial connection. // A single REST object, once connected, can be used for many Xero REST API calls. // The auto-reconnect indicates that if the already-established HTTPS connection is closed, // then it will be automatically re-established as needed. li_BAutoReconnect = 1 li_Success = loo_Rest.Connect("api.xero.com",443,1,li_BAutoReconnect) if li_Success <> 1 then Write-Debug loo_Rest.LastErrorText destroy loo_Rest destroy loo_Pfx destroy loo_PrivKeyFromPem destroy loo_Oauth1 return end if // Finally, install the OAuth1 authenticator. // (It make no difference whether this happens before or after the // connection is established.) loo_Rest.SetAuthOAuth1(loo_Oauth1,0) Write-Debug "OK, the Xero OAuth1 is initialized and the REST object is ready to make REST API calls.." destroy loo_Rest destroy loo_Pfx destroy loo_PrivKeyFromPem destroy loo_Oauth1 |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.