阿里云OSS存储开发(一)

Step 1. 初始化一个OSSClient

OSSClient是与OSS服务交互的客户端,SDK的OSS操作都是通过OSSClient完成的。

下面代码新建了一个OSSClient:

using Aliyun.OpenServices.OpenStorageService; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace AliyunTest { class Program { static readonly string accessKeyId = "AccessKeyId"; static readonly string accessKeySecret = "AccessKeySecret"; //关于这个endPoint,可以参考:?spm=5176.7189909.0.0.YiwiFw static readonly string endPoint = ""; static void Main(string[] args) { //初始化 OSSClient OssClient ossClient = new OssClient(endPoint, accessKeyId, accessKeySecret); //使用代码... } } }

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/zzzzyy.html