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
(AutoIt) Adyen Verify Payment ResultOnce a payment has completed, this verifies the result from your server with a /payments/result request. For more information, see https://docs.adyen.com/checkout/web-sdk/#step-3-verify-payment-result
$oHttp = ObjCreate("Chilkat.Http") Local $bSuccess ; Use this online tool to generate the code from sample JSON: ; Generate Code to Create JSON ; The following JSON is sent in the request body. ; { ; "payload": "2he28Ddhwj242he28Ddhwj..." ; } $oJson = ObjCreate("Chilkat.JsonObject") $oJson.UpdateString("payload","2he28Ddhwj242he28Ddhwj...") $oHttp.SetRequestHeader "X-API-Key","Your_API_key" Local $oResp = $oHttp.PostJson3("https://checkout-test.adyen.com/v41/payments/result","application/json",$oJson) If ($oHttp.LastMethodSuccess = False) Then ConsoleWrite($oHttp.LastErrorText & @CRLF) Exit EndIf $oSbResponseBody = ObjCreate("Chilkat.StringBuilder") $oResp.GetBodySb($oSbResponseBody) $oJResp = ObjCreate("Chilkat.JsonObject") $oJResp.LoadSb($oSbResponseBody) $oJResp.EmitCompact = False Local $iRespStatusCode = $oResp.StatusCode ConsoleWrite("Status Code = " & $iRespStatusCode & @CRLF) ConsoleWrite("Response Body:" & @CRLF) ConsoleWrite($oJResp.Emit() & @CRLF) If ($iRespStatusCode >= 400) Then ConsoleWrite("Response Header:" & @CRLF) ConsoleWrite($oResp.Header & @CRLF) ConsoleWrite("Failed." & @CRLF) Exit EndIf ; Sample JSON response: ; { ; "pspReference": "851559480052382F", ; "resultCode": "Authorised", ; "merchantReference": "123", ; "paymentMethod": "ideal", ; "shopperLocale": "nl_NL" ; } ; Sample code for parsing the JSON response... ; Use the following online tool to generate parsing code from sample JSON: ; Generate Parsing Code from JSON Local $sPspReference Local $sResultCode Local $sMerchantReference Local $sPaymentMethod Local $shopperLocale $sPspReference = $oJResp.StringOf("pspReference") $sResultCode = $oJResp.StringOf("resultCode") $sMerchantReference = $oJResp.StringOf("merchantReference") $sPaymentMethod = $oJResp.StringOf("paymentMethod") $shopperLocale = $oJResp.StringOf("shopperLocale") |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.