Visual FoxPro
Visual FoxPro
UPS OAuth2 Client Credentials
See more UPS Examples
Get an OAuth2 access token for the UPS REST API using the client credentials flow (no interactivity with a web browser required).Chilkat Visual FoxPro Downloads
LOCAL lnSuccess
LOCAL loHttp
LOCAL loReq
LOCAL loResp
LOCAL loSbResponseBody
LOCAL loJResp
LOCAL lnRespStatusCode
LOCAL lcToken_type
LOCAL lcIssued_at
LOCAL lcClient_id
LOCAL lcAccess_token
LOCAL lcExpires_in
LOCAL lcStatus
lnSuccess = 0
* This example assumes the Chilkat API to have been previously unlocked.
* See Global Unlock Sample for sample code.
loHttp = CreateObject('Chilkat.Http')
* Implements the following CURL command:
* curl -i -X POST \
* -u 2498righ8wr6aihe98rt8rhowirtyw9er6twe80rtywrehrt:nerf254578uh8rgt7y3h57358ouyth387h8h53h6yyh80hh578per9y7u5ruyuy4 \
* https://wwwcie.ups.com/security/v1/oauth/token \
* -H 'Content-Type: application/x-www-form-urlencoded' \
* -H 'x-merchant-id: 7B3027' \
* -d grant_type=client_credentials
* Use the following online tool to generate HTTP code from a CURL command
* Convert a cURL Command to HTTP Source Code
loHttp.BasicAuth = 1
loHttp.Login = "2498righ8wr6aihe98rt8rhowirtyw9er6twe80rtywrehrt"
loHttp.Password = "nerf254578uh8rgt7y3h57358ouyth387h8h53h6yyh80hh578per9y7u5ruyuy4"
loReq = CreateObject('Chilkat.HttpRequest')
loReq.AddParam("grant_type","client_credentials")
loReq.AddHeader("x-merchant-id","7B3027")
loReq.HttpVerb = "POST"
loReq.ContentType = "application/x-www-form-urlencoded"
loResp = CreateObject('Chilkat.HttpResponse')
lnSuccess = loHttp.HttpReq("https://wwwcie.ups.com/security/v1/oauth/token",loReq,loResp)
IF (lnSuccess = 0) THEN
? loHttp.LastErrorText
RELEASE loHttp
RELEASE loReq
RELEASE loResp
CANCEL
ENDIF
loSbResponseBody = CreateObject('Chilkat.StringBuilder')
loResp.GetBodySb(loSbResponseBody)
loJResp = CreateObject('Chilkat.JsonObject')
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = 0
? "Response Body:"
? loJResp.Emit()
lnRespStatusCode = loResp.StatusCode
? "Response Status Code = " + STR(lnRespStatusCode)
IF (lnRespStatusCode >= 400) THEN
? "Response Header:"
? loResp.Header
? "Failed."
RELEASE loHttp
RELEASE loReq
RELEASE loResp
RELEASE loSbResponseBody
RELEASE loJResp
CANCEL
ENDIF
* Save the OAuth2 access token for other examples to use.
loJResp.WriteFile("qa_data/tokens/ups_oauth2_token.json")
* If successful, the OAuth2 access token JSON looks like this:
* {
* "token_type": "Bearer",
* "issued_at": "1686911985606",
* "client_id": "2498righ8wr6aihe98rt8rhowirtyw9er6twe80rtywrehrt",
* "access_token": "eyJraW......R2sbqrY",
* "expires_in": "14399",
* "status": "approved"
* }
lcToken_type = loJResp.StringOf("token_type")
lcIssued_at = loJResp.StringOf("issued_at")
lcClient_id = loJResp.StringOf("client_id")
lcAccess_token = loJResp.StringOf("access_token")
lcExpires_in = loJResp.StringOf("expires_in")
lcStatus = loJResp.StringOf("status")
RELEASE loHttp
RELEASE loReq
RELEASE loResp
RELEASE loSbResponseBody
RELEASE loJResp