ZendService Twitter在Client connect()上失败

时间:2014-11-20 17:20:57

标签: php curl twitter zend-framework2 zend-http-client

通过ZendService / Twitter / Twitter连接Twitter API时出现问题。

Error:  Fatal error: Call to a member function connect() on a non-object in somepath/vendor/zendframework/zendframework/library/Zend/Http/Client.php on line 1358



$config = array (
                'access_token' => array (
                        'token' => 'dummy',
                        'secret' => 'dummy' 
                ),
                'oauth_options' => array (
                        'consumerKey' => 'dummy',
                        'consumerSecret' => 'dummy' 
                ),
                'http_client_options' => array (
                        'adapter' => 'Zend\Http\Client\Adapter\Curl',
                        'curloptions' => array (
                                CURLOPT_SSL_VERIFYHOST => false,
                                CURLOPT_SSL_VERIFYPEER => false 
                        ) 
                ) 
        );

        $twitter = new Twitter ( $config );
        print_r ($twitter->account->verifyCredentials ());

使用curl 7.26.0(x86_64-pc-linux-gnu)OpenSSL / 1.0.1e 关于ZF 2.3.3的PHP 5.4.35

更新1:删除access_token部分会返回"错误验证数据"信息。再次启用它将抛出atal错误:在第1358行的somepath / vendor / zendframework / zendframework / library / Zend / Http / Client.php中的非对象上调用成员函数connect()

1 个答案:

答案 0 :(得分:1)

Twitter 仅允许在Twitter API端点中使用SSL连接。详细记录了here。因此,您需要设置适配器选项以满足SSL协议要求。

试试这个:

'http_client_options' => array (
    'adapter' => 'Zend\Http\Client\Adapter\Curl',
    'curloptions' => array (
        CURLOPT_SSL_VERIFYHOST => 2,
        CURLOPT_SSL_VERIFYPEER => true,
        CURLOPT_CAINFO => '/path/to/certs/ca-bundle.pem'
    ) 
),

验证远程主机时,需要提供一个或多个可信CA证书。检查公共名称的存在时,需要VERIFYHOST选项的值2,并验证它是否与提供的主机名匹配。使用1仅检查SSL对等证书中是否存在名称。

您可能还想了解有关使用this nice tutorial中的Curl适配器配置SSL连接的更多信息。