Sample code for 30+ languages & platforms
Lianja

Google Cloud Storage: Update Object Metadata

See more Google Cloud Storage Examples

Demonstrates how to update (edit) the metadata associated with an object in a Google Cloud Storage bucket.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

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

loHttp = createobject("CkHttp")

// Implements the following CURL command:

// curl -X PATCH --data-binary @JSON_FILE_NAME \
//   -H "Authorization: Bearer OAUTH2_TOKEN" \
//   -H "Content-Type: application/json" \
//   "https://storage.googleapis.com/storage/v1/b/BUCKET_NAME/o/OBJECT_NAME"

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

loBdRequestBody = createobject("CkBinData")
llSuccess = loBdRequestBody.LoadFile("JSON_FILE_PATH")
if (llSuccess <> .T.) then
    ? "Failed to load JSON_FILE_PATH"
    release loHttp
    release loBdRequestBody
    return
endif

// Adds the "Authorization: Bearer OAUTH2_TOKEN" header.
loHttp.AuthToken = "OAUTH2_TOKEN"

loResp = createobject("CkHttpResponse")
llSuccess = loHttp.HttpBd("PATCH","https://storage.googleapis.com/storage/v1/b/BUCKET_NAME/o/OBJECT_NAME",loBdRequestBody,"application/json",loResp)
if (llSuccess = .F.) then
    ? loHttp.LastErrorText
    release loHttp
    release loBdRequestBody
    release loResp
    return
endif

loSbResponseBody = createobject("CkStringBuilder")
loResp.GetBodySb(loSbResponseBody)

loJResp = createobject("CkJsonObject")
loJResp.LoadSb(loSbResponseBody)
loJResp.EmitCompact = .F.

? "Response Body:"
? loJResp.Emit()

lnRespStatusCode = loResp.StatusCode
? "Response Status Code = " + str(lnRespStatusCode)
if (lnRespStatusCode >= 400) then
    ? "Response Header:"
    ? loResp.Header
    ? "Failed."
    release loHttp
    release loBdRequestBody
    release loResp
    release loSbResponseBody
    release loJResp
    return
endif



release loHttp
release loBdRequestBody
release loResp
release loSbResponseBody
release loJResp