1

使用以下 PHP 代码调用 lambda 函数,但出现以下错误。查看 PHP AWS api 文档无法找到导致问题的原因。从 aws php sdk 收到以下错误

PHP Warning:  Illegal string offset 'StatusCode' in /var/www/html/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php on line 21
PHP Warning:  Illegal string offset 'FunctionError' in /var/www/html/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php on line 24
PHP Warning:  Illegal string offset 'LogResult' in /var/www/html/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php on line 24
PHP Catchable fatal error:  Argument 1 passed to Guzzle\Service\Resource\Model::__construct() must be of the type array, string given, called in /var/www/html/Guzzle/Service/Command/OperationResponseParser.php on line 86 and defined in /var/www/html/Guzzle/Service/Resource/Model.php on line 20


use Aws\Lambda\LambdaClient;
$client = LambdaClient::factory(array(
                    'credentials' => array(
                    'key'    => $f_key,
                    'secret' => $f_secret,
                   ),
                     'region'  => 'ap-southeast-2'
                ));
    try {

    echo "new invoke" . "\n";
    $result = $client->invoke(array(
        // FunctionName is required
        'FunctionName' => 'hello_wo’,
    ));
    }catch(Exception $e) {
      echo 'Error retrieving lambd error message code-' . $e->getCode . '-error message-' . $e->getMessage() ;
    }
4

1 回答 1

0

尝试这个:

$client = LambdaClient::factory([
        'key' => $f_key,
        'secret' => $f_secret,
        'region' => 'ap-southeast-2'
    ]);
于 2017-05-06T07:04:27.740 回答