4

首先,我能够使用 Oauth 成功进行身份验证。我正在使用在这里找到的 Padraic 教程:http: //blog.atrumfutura.com/archives/411-Writing-A-Simple-Twitter-Client-Using-the-PHP-Zend-Frameworks-OAuth-Library-Zend_Oauth.html

现在,我的问题是我已经有了一个使用 Zend_Service_Twitter 的 Twitter 模型。但是由于 Zend_Service_Twitter 需要密码,我决定扩展它。我的新课是这样的:

<?php

/**
 * I'm trying to extend Zend_Service_Twitter to use Oauth instead
 */

require_once 'Zend/Service/Twitter.php';

class Mytwitterapp_Twitteroauth extends Zend_Service_Twitter
{
    /**
     * Oauth
     * @var Zend_Oauth_Token_Access
     */
    protected $_token;

    /**
     * Array for Zend_Oauth_Consumer (i think)
     * @var Zend_Config_Ini
     */
    protected $_config;

    /**
     * @param object $token
     * @return void
     */
    public function __construct(Zend_Oauth_Token_Access $token)
    {
        $this->_config = new Zend_Config_Ini(APPLICATION_INI, APPLICATION_ENV);

        $this->_token = $token;
        $this->setUri('http://twitter.com');

        $client = $this->_token->getHttpClient($this->_config->oauth->toArray());
    }

    public function _init()
    {
        $client = $this->_token->getHttpClient($this->_config->oauth->toArray());
    }
}

所以我的 Model_Twitter 看起来像这样:

<?php

require_once 'Mytwitterapp/Twitteroauth.php';

class Twitter_Model_Twitter 
{
    private $_twitter;
    private $_username;
    private $_password;

    public function __construct(array $options = null) 
    {        
         $oauth = new Zend_Session_Namespace('Twitter_Oauth');
         $token = unserialize($oauth->twitter_access_token);
         $this->_twitter = new Mytwitterapp_Twitteroauth($token);
    }

    public function setOptions(array $options)
    {
        $methods = get_class_methods($this);
        foreach ($options as $key => $value) {
            $pieces = explode('_', $key);
            foreach($pieces AS $piece_key => $piece_value) {
                $pieces[$piece_key] = ucfirst($piece_value);
            }
            $name = implode('',$pieces);
            $method = 'set' . $name;
            if (in_array($method, $methods)) {
                $this->$method($value);
            }
        }
        return $this;
    }

    public function setTwitter($obj)
    {
        $this->_twitter = $obj;
        return $this;
    }


    public function verifyCredentials()
    {
        return $this->_twitter->account->verifyCredentials();
    }

    public function userTimeline()
    {
        return $this->_twitter->status->userTimeline();
    }
//...more code here...
}

最后,我希望将这些与以下内容一起使用:

$twitter_model = new Twitter_Model_Twitter();
$this->view->friendsTimeline = $twitter_model->friendsTimeline();
  1. 我做对了吗?(在扩展我的 Zend_Service_Twitter 类方面)。

  2. 你将如何实现这样的事情?

我也收到此错误:

Zend_Rest_Client_Result_Exception: REST Response Error: fopen(/htdocs/twitter/application/views/helpers/Layout.php) [function.fopen]: failed to open stream: No such file or directory in /Applications/MAMP/bin/php5/lib/php/Zend/Rest/Client/Result.php on line 67
4

3 回答 3

5

好的,我在这个问题上悬赏,我不知道如何删除它。我要自己回答。让其他人知道他们是否遇到同样的问题。

首先,在我的 application.ini 中,我有这样的东西:

oauth.version           = "1.0"
oauth.signatureMethod   = "HMAC-SHA1"
oauth.requestScheme     = "header"
oauth.siteUrl           = "http://mysite.com/twitter/public"
oauth.callbackUrl       = "http://mysite.com/twitter/public/login/callback"
oauth.requestTokenUrl   = "http://twitter.com/oauth/request_token"
oauth.authorizeUrl      = "http://twitter.com/oauth/authorize"
oauth.accessTokenUrl    = "http://twitter.com/oauth/access_token"
oauth.consumerKey       = "xxxxxx"
oauth.consumerSecret    = "xxxxxxxxxx"

然后,我的新模型是这样的:

<?php

/**
 * I'm trying to extend Zend_Service_Twitter to use Oauth instead
 */

require_once 'Zend/Service/Twitter.php';

class Mytwitterapp_Twitteroauth extends Zend_Service_Twitter
{
    /**
     * Oauth
     * @var Zend_Oauth_Token_Access
     */
    protected $_token;

    /**
     * Array for Zend_Oauth_Consumer (i think)
     * @var Zend_Config_Ini
     */
    protected $_config;

    /**
     * @param object $token
     * @return void
     */
    public function __construct(Zend_Oauth_Token_Access $token)
    {
        $this->_config = new Zend_Config_Ini(APPLICATION_INI, APPLICATION_ENV);
        $this->_token = $token;
        $this->setUri('http://twitter.com');
        //$this->_authInitialized = true;

        self::setHttpClient($token->getHttpClient($this->_config->oauth->toArray()));
    }
}

使用它看起来像这样:

$oauth = new Zend_Session_Namespace('Twitter_Oauth');
$token = unserialize($oauth->twitter_access_token);
$this->_twitter = new Mytwitterapp_Twitteroauth($token);
于 2009-08-21T15:26:31.973 回答
3

我们已经为 Twitgoo.com 做了几乎完全一样的事情(运行完整的 zend 框架和 twitter oauth 登录集成)。

概括地说,我们创建了两种Zend_Auth_Identity模型——一种用于密码登录,一种用于 oauth 登录。(实际上是 3,其中 1 是 'anon' 并且全部失败Zend_Auth)。身份至少包含用户名和我们的本地用户标识 - 对于 oauth,它包含Zend_Oauth_Token,对于密码,它包含密码(我们从不存储它)。这些身份模型是Zend_Auth_Adaptertwitter 返回的内容,也是我们传递给Zend_Service_Twitter扩展程序的内容。

然后我们的 twitter 接受一个 Identity 模型,并为它设置 twitter。

class Tg_Service_Twitter extends Zend_Service_Twitter {

    public function __construct(Tg_Auth_Identity $login) {
        if ($login instanceof Tg_Auth_Identity_Password) {
            $password = $login->getPassword();
        } else if ($login instanceof Tg_Auth_Identity_Oauth) {
            $password = null;
            $httpClient = $login->getOauthToken()
                ->getHttpClient(Tg_Service_Twitter_Helper::getOauthOptions());
            self::setHttpClient($httpClient);
        } else {
            throw new Exception('not done yet');
        }

        $username = $login->getUsername();

        self::setupHttpClient();
        parent::__construct($username, $password);

        if ($login instanceof Tg_Auth_Identity_Oauth) {
            //makes it skip basic auth
            $this->_authInitialized = true;
        }
    }

$username 需要通过一些 Service_Twitter 函数从登录(twitter 在获取访问令牌期间返回给您)中设置。

如果需要,我可以添加更多细节。

于 2009-08-21T18:36:13.603 回答
0

伙计,谢谢你。只是对一个已经有很多Zend_Service_Twitter电话的新项目失去了理智。

于 2009-08-28T19:40:58.057 回答