ListFunctions.php 941 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. require_once __DIR__.'/../../../vendor/autoload.php';
  3. use TencentCloud\Common\Credential;
  4. use TencentCloud\Common\Profile\ClientProfile;
  5. use TencentCloud\Common\Profile\HttpProfile;
  6. use TencentCloud\Common\Exception\TencentCloudSDKException;
  7. use TencentCloud\Scf\V20180416\ScfClient;
  8. use TencentCloud\Scf\V20180416\Models\ListFunctionsRequest;
  9. try {
  10. $cred = new Credential(getenv("TENCENTCLOUD_SECRET_ID"), getenv("TENCENTCLOUD_SECRET_KEY"));
  11. $httpProfile = new HttpProfile();
  12. $httpProfile->setEndpoint("scf.tencentcloudapi.com");
  13. $clientProfile = new ClientProfile();
  14. $clientProfile->setHttpProfile($httpProfile);
  15. $client = new ScfClient($cred, "ap-guangzhou", $clientProfile);
  16. $req = new ListFunctionsRequest();
  17. $params = '{}';
  18. $req->fromJsonString($params);
  19. $resp = $client->ListFunctions($req);
  20. print_r($resp->toJsonString());
  21. }
  22. catch(TencentCloudSDKException $e) {
  23. echo $e;
  24. }