Думайте о источнике данных как о базе данных. Например, CakePHP распространяется с несколькими базами данных (например, MySql, Oracle и т. Д.). Вам нужно создать источник данных YahooAnswers.
Вот пример в документации, чтобы показать вам, как создать источник данных Twitter, например:
http://book.cakephp.org/view/849/An-Example
Это должно помочь вам реализовать API YahooAnswers в качестве источника данных.
ОБНОВЛЕНИЕ: Вот пример:
<?php
pp::import('Core', 'HttpSocket');
class YahooAnswersSource extends DataSource {
protected $_schema = array(
'users' => array(
'id' => array(
'type' => 'integer',
'null' => true,
'key' => 'primary',
'length' => 11,
),
'name' => array(
'type' => 'string',
'null' => true,
'key' => 'primary',
'length' => 60
),
),
'questions' => array(
'id' => array(
'type' => 'integer',
'null' => true,
'key' => 'primary',
'length' => 11,
),
'text' => array(
'type' => 'string',
'null' => true,
'key' => 'primary',
'length' => 140
),
)
);
public function __construct($config) {
$auth = "{$config['login']}:{$config['password']}";
$this->connection = new HttpSocket(
"http://{$auth}@yahooanswers.com/"
);
parent::__construct($config);
}
public function listSources() {
return array('users','questions');
}
...
?>