更新时间:2023-11-09 GMT+08:00

生成列举对象的URL

开发过程中,您有任何问题可以在github上提交issue

static void test_list_object_auth()
{
    // 创建并初始化option
    obs_options option;
    init_obs_options(&option);
    option.bucket_options.host_name = "<your-endpoint>";
    option.bucket_options.bucket_name = "<Your bucketname>";

    // 认证用的ak和sk硬编码到代码中或者明文存储都有很大的安全风险,建议在配置文件或者环境变量中密文存放,使用时解密,确保安全;本示例以ak和sk保存在环境变量中为例,运行本示例前请先在本地环境中设置环境变量ACCESS_KEY_ID和SECRET_ACCESS_KEY。
    // 您可以登录访问管理控制台获取访问密钥AK/SK,获取方式请参见https://support.huaweicloud.com/intl/zh-cn/usermanual-ca/ca_01_0003.html
    option.bucket_options.access_key = getenv("ACCESS_KEY_ID");
    option.bucket_options.secret_access_key = getenv("SECRET_ACCESS_KEY");
    temp_auth_configure tempauth;
        
    tempAuthResult  ptrResult;
    memset_s(&ptrResult,sizeof(tempAuthResult),0,sizeof(tempAuthResult));
    //回调数据
    tempauth.callback_data = (void *)(&ptrResult);  
    // 有效时间    
    tempauth.expires = 10;
    // 回调函数 返回生成的临时URL
    tempauth.temp_auth_callback = &tempAuthCallBack_getResult;
    option.temp_auth = &tempauth;
    //列举对象的最大数目
    int maxkeys  =  100;
    obs_list_objects_handler list_bucket_objects_handler =
    {
            { &response_properties_callback, &list_object_complete_callback },
            &list_objects_callback
     };
    list_object_callback_data data;
    memset(&data, 0, sizeof(list_object_callback_data)); 
    list_bucket_objects(&option, NULL, data.next_marker,NULL, maxkeys, 
    &list_bucket_objects_handler, &data); 
    if (OBS_STATUS_OK == data.ret_status) {printf("the temporary signature url of list bucket objects generated successfully. The result is recorded in the tmpAuthUrl.txt file. \n");
    }
    else
    {
         printf("the temporary signature url of list bucket objects generation failed(%s).\n", 
                                obs_get_status_name(data.ret_status));
    }
}