Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用新的 PHP SDK (V2) 使用 dynamodb 时如何禁用/启用 SSL。
在 V1 中有 $DDB->disable_ssl(); V2 上的等价物是什么?
在文档中找不到任何关于此的内容。
虽然不建议这样做,但您可以通过将scheme选项传递给客户端的工厂方法或作为服务构建器中的配置设置来禁用 SSL。
scheme
<?php $client = Aws\DynamoDb\DynamoDbClient::factory(array( 'key' => '***', 'secret' => '***', 'region' => 'us-east-1', 'scheme' => 'http' ));
该scheme选项确定在创建用于联系服务的基本 URL 时使用的 URL 方案。