Overview
This document provides a code sample for generating an object access URL.
Note:
The object access URL generation method described in this document applies only to the scenario where the default domain is used to access public-read objects.
Generating Object Access URLs
If the ACL attribute of an object is set to public-read, you can directly access the object using the URL generated by the following SDK API (only the URL for COS's default origin server domain can be generated):
try
{
// Bucket name in the format of `BucketName-APPID`. You can get APPID by referring to https://console.tencentcloud.com/developer.
string bucket = "examplebucket-1250000000";
string key = "exampleobject"; // Object key
// Generate a public-read object URL
string requestURL = cosXml.GetObjectUrl(bucket, key);
// Request succeeded
Console.WriteLine(requestURL);
}
catch (COSXML.CosException.CosClientException clientEx)
{
// Request failed
Console.WriteLine("CosClientException: " + clientEx);
}
catch (COSXML.CosException.CosServerException serverEx)
{
// Request failed
Console.WriteLine("CosServerException: " + serverEx.GetInfo());
}
Note:
For the complete sample, go to GitHub.
Was this page helpful?