腾讯云CDN刷新URL代码

doudi2023-10-18PHP462

需要安装SDK依赖包

composer require tencentcloud/tencentcloud-sdk-php

然后再创建一个php文件写入以下代码,需要替换其中的SecretId 和 SecretKey,"Urls" => array()中填写需要刷新的URL

<?php
require_once 'vendor/autoload.php';
use TencentCloud\Common\Credential;
use TencentCloud\Common\Profile\ClientProfile;
use TencentCloud\Common\Profile\HttpProfile;
use TencentCloud\Common\Exception\TencentCloudSDKException;
use TencentCloud\Cdn\V20180606\CdnClient;
use TencentCloud\Cdn\V20180606\Models\PurgeUrlsCacheRequest;
try {
    // 实例化一个认证对象,入参需要传入腾讯云账户 SecretId 和 SecretKey,此处还需注意密钥对的保密
    // 代码泄露可能会导致 SecretId 和 SecretKey 泄露,并威胁账号下所有资源的安全性。以下代码示例仅供参考,建议采用更安全的方式来使用密钥,请参见:https://cloud.tencent.com/document/product/1278/85305
    // 密钥可前往官网控制台 https://console.cloud.tencent.com/cam/capi 进行获取
    $cred = new Credential("SecretId", "SecretKey");
    // 实例化一个http选项,可选的,没有特殊需求可以跳过
    $httpProfile = new HttpProfile();
    $httpProfile->setEndpoint("cdn.tencentcloudapi.com");

    // 实例化一个client选项,可选的,没有特殊需求可以跳过
    $clientProfile = new ClientProfile();
    $clientProfile->setHttpProfile($httpProfile);
    // 实例化要请求产品的client对象,clientProfile是可选的
    $client = new CdnClient($cred, "", $clientProfile);

    // 实例化一个请求对象,每个接口都会对应一个request对象
    $req = new PurgeUrlsCacheRequest();

    $params = array(
        "Urls" => array( "https://baidu.com", "http://qq.com")
    );
    $req->fromJsonString(json_encode($params));

    // 返回的resp是一个PurgeUrlsCacheResponse的实例,与请求对象对应
    $resp = $client->PurgeUrlsCache($req);

    // 输出json格式的字符串回包
    print_r($resp->toJsonString());
}
catch(TencentCloudSDKException $e) {
    echo $e;
}


发表评论

访客

◎欢迎参与讨论,请在这里发表您的看法和观点。