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
(DataFlex) Shippo Validate AddressDemonstrates how to validate your addresses through the Shippo API before you create labels. For more information, see https://goshippo.com/docs/address-validation/
Use ChilkatAx-win32.pkg Procedure Test Handle hoHttp Boolean iSuccess Variant vReq Handle hoReq Variant vResp Handle hoResp Variant vSbResponseBody Handle hoSbResponseBody Handle hoJResp Integer iRespStatusCode String sSource String sCode String sV_type String sText String sObject_created String sObject_updated String sObject_id Boolean iIs_complete Boolean iValidation_resultsIs_valid String sObject_owner String sName String sCompany String sStreet_no String sStreet1 String sStreet2 String sCity String sState String sZip String sCountry String sPhone Integer i Integer iCount_i String sTemp1 Boolean bTemp1 // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. Get Create (RefClass(cComChilkatHttp)) To hoHttp If (Not(IsComObjectCreated(hoHttp))) Begin Send CreateComObject of hoHttp End // Implements the following CURL command: // curl https://api.goshippo.com/addresses/ \ // -H "Authorization: ShippoToken <API_TOKEN>" \ // -d name="Shawn Ippotle" \ // -d company="Shippo" \ // -d street1="215 Clayton St." \ // -d city="San Francisco" \ // -d state="CA" \ // -d zip=94117 \ // -d country="US" \ // -d email="shippotle@goshippo.com"\ // -d validate=true Get Create (RefClass(cComChilkatHttpRequest)) To hoReq If (Not(IsComObjectCreated(hoReq))) Begin Send CreateComObject of hoReq End Set ComHttpVerb Of hoReq To "POST" Set ComPath Of hoReq To "/addresses/" Set ComContentType Of hoReq To "application/x-www-form-urlencoded" Send ComAddParam To hoReq "name" "Shawn Ippotle" Send ComAddParam To hoReq "company" "Shippo" Send ComAddParam To hoReq "street1" "215 Clayton St." Send ComAddParam To hoReq "city" "San Francisco" Send ComAddParam To hoReq "state" "CA" Send ComAddParam To hoReq "zip" "94117" Send ComAddParam To hoReq "country" "US" Send ComAddParam To hoReq "email" "shippotle@goshippo.com" Send ComAddParam To hoReq "validate" "true" Send ComAddHeader To hoReq "Authorization" "ShippoToken <API_TOKEN>" Get pvComObject of hoReq to vReq Get ComPostUrlEncoded Of hoHttp "https://api.goshippo.com/addresses/" vReq To vResp If (IsComObject(vResp)) Begin Get Create (RefClass(cComChilkatHttpResponse)) To hoResp Set pvComObject Of hoResp To vResp End Get ComLastMethodSuccess Of hoHttp To bTemp1 If (bTemp1 = False) Begin Get ComLastErrorText Of hoHttp To sTemp1 Showln sTemp1 Procedure_Return End Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody If (Not(IsComObjectCreated(hoSbResponseBody))) Begin Send CreateComObject of hoSbResponseBody End Get pvComObject of hoSbResponseBody to vSbResponseBody Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess Get Create (RefClass(cComChilkatJsonObject)) To hoJResp If (Not(IsComObjectCreated(hoJResp))) Begin Send CreateComObject of hoJResp End Get pvComObject of hoSbResponseBody to vSbResponseBody Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess Set ComEmitCompact Of hoJResp To False Showln "Response Body:" Get ComEmit Of hoJResp To sTemp1 Showln sTemp1 Get ComStatusCode Of hoResp To iRespStatusCode Showln "Response Status Code = " iRespStatusCode If (iRespStatusCode >= 400) Begin Showln "Response Header:" Get ComHeader Of hoResp To sTemp1 Showln sTemp1 Showln "Failed." Send Destroy of hoResp Procedure_Return End Send Destroy of hoResp // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "object_created": "2015-03-30T23:47:11.574Z", // "object_updated": "2015-03-30T23:47:11.596Z", // "object_id": "67183b2e81e9421f894bfbcdc4236b16", // "is_complete": false, // "validation_results": { // "is_valid": false, // "messages": [ // { // "source": "USPS", // "code": "Address Not Found", // "type": "address_error", // "text": "The address as submitted could not be found. Please check for excessive abbreviations in the street address line or in the City name." // } // ] // }, // "object_owner": "shippotle@goshippo.com", // "name": "Shawn Ippotle", // "company": "Shippo", // "street_no": "", // "street1": "215 HIPPO ST.", // "street2": "", // "city": "SAN FRANCISCO", // "state": "CA", // "zip": "94107", // "country": "US", // "phone": "" // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON Get ComStringOf Of hoJResp "object_created" To sObject_created Get ComStringOf Of hoJResp "object_updated" To sObject_updated Get ComStringOf Of hoJResp "object_id" To sObject_id Get ComBoolOf Of hoJResp "is_complete" To iIs_complete Get ComBoolOf Of hoJResp "validation_results.is_valid" To iValidation_resultsIs_valid Get ComStringOf Of hoJResp "object_owner" To sObject_owner Get ComStringOf Of hoJResp "name" To sName Get ComStringOf Of hoJResp "company" To sCompany Get ComStringOf Of hoJResp "street_no" To sStreet_no Get ComStringOf Of hoJResp "street1" To sStreet1 Get ComStringOf Of hoJResp "street2" To sStreet2 Get ComStringOf Of hoJResp "city" To sCity Get ComStringOf Of hoJResp "state" To sState Get ComStringOf Of hoJResp "zip" To sZip Get ComStringOf Of hoJResp "country" To sCountry Get ComStringOf Of hoJResp "phone" To sPhone Move 0 To i Get ComSizeOfArray Of hoJResp "validation_results.messages" To iCount_i While (i < iCount_i) Set ComI Of hoJResp To i Get ComStringOf Of hoJResp "validation_results.messages[i].source" To sSource Get ComStringOf Of hoJResp "validation_results.messages[i].code" To sCode Get ComStringOf Of hoJResp "validation_results.messages[i].type" To sV_type Get ComStringOf Of hoJResp "validation_results.messages[i].text" To sText Move (i + 1) To i Loop End_Procedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.