Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

PowerBuilder Web API Examples

Primary Categories

ABN AMRO
AWS Secrets Manager
AWS Security Token Service
AWS Translate
Activix CRM
Adyen
Alibaba Cloud OSS
Amazon Cognito
Amazon DynamoDB
Amazon MWS
Amazon Pay
Amazon Rekognition
Amazon SP-API
Amazon Voice ID
Aruba Fatturazione
Azure Maps
Azure Monitor
Azure OAuth2
Azure Storage Accounts
Backblaze S3
Banco Inter
Belgian eHealth Platform
Bitfinex v2 REST
Bluzone
BrickLink
Bunny CDN
CallRail
CardConnect
Cerved
ClickBank
Clickatell
Cloudfare
Constant Contact
DocuSign
Duo Auth MFA
ETrade
Ecwid
Egypt ITIDA
Egypt eReceipt
Etsy
Facebook
Faire
Frame.io
GeoOp
GetHarvest
Global Payments
Google People
Google Search Console
Google Translate
Hungary NAV Invoicing
IBM Text to Speech
Ibanity
IntakeQ
Jira
Lightspeed
MYOB
Magento
Mailgun
Mastercard

MedTunnel
MercadoLibre
MessageMedia
Microsoft Calendar
Microsoft Group
Microsoft Tasks and Plans
Microsoft Teams
Moody's
Okta OAuth/OIDC
OneLogin OIDC
OneNote
OpenAI ChatGPT
PRODA
PayPal
Paynow.pl
Peoplevox
Populi
QuickBooks
Rabobank
Refinitiv
Royal Mail OBA
SCiS Schools Catalogue
SII Chile
SMSAPI
SOAP finkok.com
SendGrid
Shippo
Shopify
Shopware
Shopware 6
SimpleTexting
Square
Stripe
SugarCRM
TicketBAI
Trello
Twilio
Twitter API v2
Twitter v1
UPS
UniPin
VoiceBase
Vonage
WaTrend
Walmart v3
Wasabi
WhatsApp
WiX
WooCommerce
WordPress
Xero
Yahoo Mail
Yapily
Yousign
ZATCA
Zendesk
Zoom
_Miscellaneous_
eBay
effectconnect
hacienda.go.cr

 

 

 

(PowerBuilder) Amazon Pay - Get Buyer

See more Amazon Pay Examples

Get buyer details.

Note: This example requires Chilkat v9.5.0.89 or later. Contact support@chilkatsoft.com to get a v9.5.0.89 pre-release for testing.

For more information, see https://developer.amazon.com/docs/amazon-pay-api-v2/buyer.html#get-buyer

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_PrivKey
string ls_PublicKeyId
integer li_RespStatusCode
oleobject loo_SbResponseBody
oleobject loo_JResp
string ls_Name
string ls_Email
string ls_PostalCode
string ls_CountryCode
string ls_BuyerId
string ls_PhoneNumber
string ls_ShippingAddressName
string ls_ShippingAddressAddressLine1
string ls_ShippingAddressAddressLine2
string ls_ShippingAddressAddressLine3
string ls_ShippingAddressCity
string ls_ShippingAddressCounty
string ls_ShippingAddressDistrict
string ls_ShippingAddressStateOrRegion
string ls_ShippingAddressCountry
string ls_ShippingAddressPostalCode
string ls_ShippingAddressPhoneNumber
string ls_BillingAddress
string ls_PrimeMembershipTypes

// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

loo_Http = create oleobject
li_rc = loo_Http.ConnectToNewObject("Chilkat_9_5_0.Http")
if li_rc < 0 then
    destroy loo_Http
    MessageBox("Error","Connecting to COM object failed")
    return
end if

// Implements the following CURL command:

// curl "https://pay-api.amazon.com/:version/buyers/:buyerToken" \
// 	-X GET
// 	-H "authorization:Px2e5oHhQZ88vVhc0DO%2FsShHj8MDDg%3DEXAMPLESIGNATURE"
// 	-H "x-amz-pay-date:20201012T235046Z"

// Use the following online tool to generate HTTP code from a CURL command
// Convert a cURL Command to HTTP Source Code

// Load your Amazon Pay private key.  
// There are many other ways to load private keys into the Chilkat private key object, such as from different formats,
// or from in-memory strings or bytes.
loo_PrivKey = create oleobject
li_rc = loo_PrivKey.ConnectToNewObject("Chilkat_9_5_0.PrivateKey")

li_Success = loo_PrivKey.LoadPemFile("C:/someDir/myAmazonPayPrivateKey.pem")
if li_Success = 0 then
    Write-Debug loo_PrivKey.LastErrorText
    destroy loo_Http
    destroy loo_PrivKey
    return
end if

// Provide your Amazon Pay private key and Public Key ID 
// Use your public key ID here.  It must be the one associated with the private key.
// Note: The SetAuthPrivateKey method was added in Chilkat v9.5.0.89
ls_PublicKeyId = "SANDBOX-AHEGSJCM3L2S637RBGABLAFW"
li_Success = loo_Http.SetAuthPrivateKey(ls_PublicKeyId,loo_PrivKey)
if li_Success = 0 then
    Write-Debug loo_Http.LastErrorText
    destroy loo_Http
    destroy loo_PrivKey
    return
end if

// Note: When the private key is provided as shown above, Chilkat will automatically add the required x-amz-pay-* headers to the HTTP request,
// and will also sign the request.  Nothing more is needed.
// Chilkat automatically generates and adds the following headers:
// 
// x-amz-pay-date
// x-amz-pay-host
// x-amz-pay-region
// Authorization

loo_Http.Accept = "application/json"

li_RespStatusCode = 0

loo_SbResponseBody = create oleobject
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat_9_5_0.StringBuilder")

li_Success = loo_Http.SetUrlVar("buyerToken","BUYER_TOKEN")
// To use the live system, replace "sandbox" with "live" in the URL passed to QuickGetSb.
// Also, make sure to use the correct region: pay-api.amazon.com, pay-api.amazon.eu, or pay-api.amazon.jp
li_Success = loo_Http.QuickGetSb("https://pay-api.amazon.eu/sandbox/v2/buyers/{$buyerToken}",loo_SbResponseBody)
if li_Success = 0 then
    // If the LastStatus is not equal to 0, then we received a response, but it was an error response.
    li_RespStatusCode = loo_Http.LastStatus
    if li_RespStatusCode <> 0 then
        Write-Debug "Response Status Code = " + string(li_RespStatusCode)
        // Here is a sample response body for the case where the buyer token does not exist:
        // {"reasonCode":"InvalidBuyerToken","message":"The token provided is expired, revoked, malformed, or invalid for other reasons."}

        Write-Debug "Response body:"
        Write-Debug loo_Http.LastResponseBody
    else
        Write-Debug loo_Http.LastErrorText
    end if

    destroy loo_Http
    destroy loo_PrivKey
    destroy loo_SbResponseBody
    return
end if

loo_JResp = create oleobject
li_rc = loo_JResp.ConnectToNewObject("Chilkat_9_5_0.JsonObject")

loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0

Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()

li_RespStatusCode = loo_Http.LastStatus
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
// We expect a 200 status code for success.
// Note: Some Amazon Pay API calls return 200 for success, others return 201.
if li_RespStatusCode <> 200 then
    Write-Debug "Failed."
    destroy loo_Http
    destroy loo_PrivKey
    destroy loo_SbResponseBody
    destroy loo_JResp
    return
end if

// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)

// {
// 	"name": "John Example",
// 	"email": "johnexample@amazon.com",
// 	"postalCode": "12345",
// 	"countryCode": "US",
// 	"buyerId": "DIRECTEDBUYERID",
// 	"phoneNumber": "1234567811" // default billing address phone number
// 	"shippingAddress": {
// 		"name": "John",
// 		"addressLine1": "15th Street",
// 		"addressLine2": "",
// 		"addressLine3": "",
// 		"city": "Seattle", 
// 		"county": "",
// 		"district": "",
// 		"stateOrRegion": "WA",
// 		"country": "USA",
// 		"postalCode": "98121",
// 		"phoneNumber": "1234567899"
// 	},
// 	"billingAddress": null,
// 	"primeMembershipTypes": null
// }

// Sample code for parsing the JSON response...
// Use the following online tool to generate parsing code from sample JSON:
// Generate Parsing Code from JSON

ls_Name = loo_JResp.StringOf("name")
ls_Email = loo_JResp.StringOf("email")
ls_PostalCode = loo_JResp.StringOf("postalCode")
ls_CountryCode = loo_JResp.StringOf("countryCode")
ls_BuyerId = loo_JResp.StringOf("buyerId")
ls_PhoneNumber = loo_JResp.StringOf("phoneNumber")
ls_ShippingAddressName = loo_JResp.StringOf("shippingAddress.name")
ls_ShippingAddressAddressLine1 = loo_JResp.StringOf("shippingAddress.addressLine1")
ls_ShippingAddressAddressLine2 = loo_JResp.StringOf("shippingAddress.addressLine2")
ls_ShippingAddressAddressLine3 = loo_JResp.StringOf("shippingAddress.addressLine3")
ls_ShippingAddressCity = loo_JResp.StringOf("shippingAddress.city")
ls_ShippingAddressCounty = loo_JResp.StringOf("shippingAddress.county")
ls_ShippingAddressDistrict = loo_JResp.StringOf("shippingAddress.district")
ls_ShippingAddressStateOrRegion = loo_JResp.StringOf("shippingAddress.stateOrRegion")
ls_ShippingAddressCountry = loo_JResp.StringOf("shippingAddress.country")
ls_ShippingAddressPostalCode = loo_JResp.StringOf("shippingAddress.postalCode")
ls_ShippingAddressPhoneNumber = loo_JResp.StringOf("shippingAddress.phoneNumber")
ls_BillingAddress = loo_JResp.StringOf("billingAddress")
ls_PrimeMembershipTypes = loo_JResp.StringOf("primeMembershipTypes")


destroy loo_Http
destroy loo_PrivKey
destroy loo_SbResponseBody
destroy loo_JResp

 

© 2000-2024 Chilkat Software, Inc. All Rights Reserved.