Sample code for 30+ languages & platforms
PureBasic

OSS Delete Bucket (Alibaba Cloud)

See more Alibaba Cloud OSS Examples

Demonstrates how to delete an AliCloud OSS bucket.

The Chilkat S3 functions in the HTTP class are compatible with Alibaba Cloud's OSS service.

Chilkat PureBasic Downloads

PureBasic
IncludeFile "CkHttp.pb"

Procedure ChilkatExample()

    success.i = 0

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    ; Insert your AccessKey ID here:
    CkHttp::setCkAwsAccessKey(http, "access-key")

    ; Insert your AccessKey Secret here:
    CkHttp::setCkAwsSecretKey(http, "secret-key")

    ; To delete a bucket located in a different region, use the domain for that region, such as "oss-cn-hangzhou.aliyuncs.com 	"
    ; See Alibaba Object Storage Service Regions and Endpoints
    CkHttp::setCkAwsEndpoint(http, "oss-us-west-1.aliyuncs.com")

    CkHttp::setCkKeepResponseBody(http, 1)

    success = CkHttp::ckS3_DeleteBucket(http,"chilkat-testbucket2")

    If success <> 1
        Debug CkHttp::ckLastErrorText(http)
        ; Also examine the error response body from AliCloud:
        Debug CkHttp::ckLastResponseBody(http)
    Else
        Debug "Bucket deleted."
    EndIf



    CkHttp::ckDispose(http)


    ProcedureReturn
EndProcedure