我正在尝试在 Zend 应用程序的主页上显示 twitter 提要,到目前为止,我有我的 IndexController 代码:
// ---------------Twitter Feed
$token = new Zend_Oauth_Token_Access();
$token->setParams(array(
'oauth_token' => 'token',
'oauth_token_secret' => 'tokSecret',
));
$twitter = new Zend_Service_Twitter(array(
'username' => 'usrname',
'accessToken' => $token,
'oauthOptions' => array(
'consumerKey' => 'consKey',
'consumerSecret' => 'consSecret',
)
));
$options = array('accessToken' => $token);
$this->view->twitter_timeline = $twitter->statuses->userTimeline();
这给了我错误:
exception 'Zend_Http_Client_Adapter_Exception' with message 'Unable to Connect to ssl://api.twitter.com:443. Error #-223657718: Unable to find the socket transport "ssl" - did you forget to enable it when you configured PHP?'
我可以通过浏览器连接到 api.twitter.com,所以这不是代理问题..