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) Global Payments Card AuthorizationDemonstrates how to send a card payments authorization request. For more information, see https://developer.globalpay.com/#!/api/card-payments#api-authorisation
LOCAL loHttp LOCAL lnSuccess LOCAL lcTestUrl LOCAL lcClientID LOCAL lcSharedSecret LOCAL lcAmount LOCAL lcCurrency LOCAL lcCardNumber LOCAL loDt LOCAL lcDtStr LOCAL loPrng LOCAL lcOrderId LOCAL loCrypt LOCAL loSbA LOCAL lnNumReplaced LOCAL lcHashA LOCAL loSbB LOCAL lcHashB LOCAL loXml LOCAL loResp LOCAL lnResult * This example requires the Chilkat API to have been previously unlocked. * See Global Unlock Sample for sample code. * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Http') loHttp = CreateObject('Chilkat.Http') * if you don't have a Client ID yet you can still quickly test some basic request types using the following URL and credentials: * Test URL - https://test.realexpayments.com/epage-remote.cgi * Client ID: realexsandbox * Shared Secret: Po8lRRT67a lcTestUrl = "https://test.realexpayments.com/epage-remote.cgi" lcClientID = "realexsandbox" lcSharedSecret = "Po8lRRT67a" lcAmount = "1001" lcCurrency = "EUR" lcCardNumber = "4263970000005262" * We'll be sending the following XML in the body of the request: * <?xml version="1.0" encoding="UTF-8"?> * <request type="auth" timestamp="20180613141207"> * <merchantid>MerchantId</merchantid> * <account>internet</account> * <channel>ECOM</channel> * <orderid>N6qsk4kYRZihmPrTXWYS6g</orderid> * <amount currency="EUR">1001</amount> * <card> * <number>4263970000005262</number> * <expdate>0425</expdate> * <chname>James Mason</chname> * <type>VISA</type> * <cvn> * <number>123</number> * <presind>1</presind> * </cvn> * </card> * <autosettle flag="1"/> * <sha1hash>87707637a34ba651b6185718c863abc64b673f20</sha1hash> * </request> * Use this online tool to generate code from sample XML: * Generate Code to Create XML * Get the current date/time in this format: 20180613141207 * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.CkDateTime') loDt = CreateObject('Chilkat.CkDateTime') loDt.SetFromCurrentSystemTime() lcDtStr = loDt.GetAsIso8601("YYYYMMDDhhmmss",1) * Generate a unique order ID * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Prng') loPrng = CreateObject('Chilkat.Prng') lcOrderId = loPrng.GenRandom(32,"base64url") * Compute the sha1hash * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Crypt2') loCrypt = CreateObject('Chilkat.Crypt2') loCrypt.HashAlgorithm = "sha1" loCrypt.EncodingMode = "hexlower" * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbA = CreateObject('Chilkat.StringBuilder') loSbA.Append("timestamp.merchantid.orderid.amount.currency.cardnumber") lnNumReplaced = loSbA.Replace("timestamp",lcDtStr) lnNumReplaced = loSbA.Replace("merchantid",lcClientID) lnNumReplaced = loSbA.Replace("orderid",lcOrderId) lnNumReplaced = loSbA.Replace("amount",lcAmount) lnNumReplaced = loSbA.Replace("currency",lcCurrency) lnNumReplaced = loSbA.Replace("cardnumber",lcCardNumber) lcHashA = loCrypt.HashStringENC(loSbA.GetAsString()) * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.StringBuilder') loSbB = CreateObject('Chilkat.StringBuilder') loSbB.Append(lcHashA) loSbB.Append(".") loSbB.Append(lcSharedSecret) lcHashB = loCrypt.HashStringENC(loSbB.GetAsString()) * For versions of Chilkat < 10.0.0, use CreateObject('Chilkat_9_5_0.Xml') loXml = CreateObject('Chilkat.Xml') loXml.Tag = "request" loXml.AddAttribute("type","auth") loXml.AddAttribute("timestamp",lcDtStr) loXml.UpdateChildContent("merchantid",lcClientID) loXml.UpdateChildContent("account","internet") loXml.UpdateChildContent("channel","ECOM") loXml.UpdateChildContent("orderid",lcOrderId) loXml.UpdateAttrAt("amount",1,"currency",lcCurrency) loXml.UpdateChildContent("amount",lcAmount) loXml.UpdateChildContent("card|number",lcCardNumber) loXml.UpdateChildContent("card|expdate","0425") loXml.UpdateChildContent("card|chname","James Mason") loXml.UpdateChildContent("card|type","VISA") loXml.UpdateChildContent("card|cvn|number","123") loXml.UpdateChildContent("card|cvn|presind","1") loXml.UpdateAttrAt("autosettle",1,"flag","1") loXml.UpdateChildContent("sha1hash",lcHashB) loResp = loHttp.PostXml(lcTestUrl,loXml.GetXml(),"utf-8") IF (loHttp.LastMethodSuccess = 0) THEN ? loHttp.LastErrorText RELEASE loHttp RELEASE loDt RELEASE loPrng RELEASE loCrypt RELEASE loSbA RELEASE loSbB RELEASE loXml CANCEL ENDIF ? "Response Status Code: " + STR(loResp.StatusCode) ? "Response Body:" ? loResp.BodyStr IF (loResp.StatusCode <> 200) THEN ? "Failed." RELEASE loHttp RELEASE loDt RELEASE loPrng RELEASE loCrypt RELEASE loSbA RELEASE loSbB RELEASE loXml CANCEL ENDIF * A status code of 200 indicates we received an XML response, but it could be an error message. * Here's an example of an error response: * <?xml version="1.0" encoding="UTF-8" standalone="yes"?> * <response timestamp="20200418142356"> * <orderid>N6qsk4kYRZihmPrTXWYS6g</orderid> * <result>508</result> * <message>Invalid timestamp: '{' Value exceeds allowable limit: '}'</message> * </response> * We need to check the "result" within the XML. loXml.LoadXml(loResp.BodyStr) lnResult = loXml.GetChildIntValue("result") ? "result = " + STR(lnResult) * A successful result looks like this: * <?xml version="1.0" encoding="UTF-8" standalone="yes"?> * <response timestamp="20200418145519"> * <merchantid>realexsandbox</merchantid> * <account>internet</account> * <orderid>Cw93I1nFWVZuaATh46qMUCBlCcfrOvLo65C2cq5X-AY</orderid> * <result>00</result> * <authcode>L3pHww</authcode> * <message>AUTH CODE: L3pHww</message> * <pasref>96838535689610806</pasref> * <cvnresult>M</cvnresult> * <timetaken>87</timetaken> * <authtimetaken>67</authtimetaken> * <batchid>6322506</batchid> * <sha1hash>2fd2f15f97f1775779fe9bda536dc8317a4b39f6</sha1hash> * </response> IF (lnResult = 0) THEN ? "authcode = " + loXml.GetChildContent("authcode") ? "Success." ELSE ? "Failed." ENDIF RELEASE loResp RELEASE loHttp RELEASE loDt RELEASE loPrng RELEASE loCrypt RELEASE loSbA RELEASE loSbB RELEASE loXml |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.