Facestweet.comの Web サイトにアクセスして twitter サインイン ボタンをクリックすると、上部に
Notice (8): Trying to get property of non-object [APP/controllers/users_controller.php, line 220]
エラー。
エラーが発生しているコードの行は次のとおりです。
$this->set('redirect_url', 'http://twitter.com/oauth/authorize?oauth_token=' . $requestToken->key);
そして、これがコードの一部です。
$requestToken = $this->OauthConsumer->getRequestToken('Twitter', 'http://twitter.com/oauth/request_token');
$this->Session->write('requestToken', $requestToken);
$this->set('redirect_url', 'http://twitter.com/oauth/authorize?oauth_token=' . $requestToken->key);
$this->layout = 'redirect_page';
$this->render('authorize');
}
}
私は何を間違っていますか?