使用搜索API查询使用PHP的博客帖子

时间:2010-11-15 19:05:07

标签: php api blogger

我正在使用BLogger API(google)尝试在公共博客上搜索某些字符串(即“John Doe是我的朋友” - 并返回博客ID / url / etc)。我到目前为止所找到的只返回我自己帐户的数据,而不是所有公共帐户。

这就是我现在拥有的东西,由于我自己没有设置博客,所以输出量不大。我已经尝试添加参数等来缩小搜索范围,但我觉得$ query需要改变一下。

<?php

$user = 'xxxxxx';
$pass = 'xxxxxx';

require_once 'Zend/Loader.php';
Zend_Loader::loadClass('Zend_Gdata');
Zend_Loader::loadClass('Zend_Gdata_Query');
Zend_Loader::loadClass('Zend_Gdata_ClientLogin');
Zend_Loader::loadClass('Zend_Gdata_Feed');

$client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, 'blogger', null,
    Zend_Gdata_ClientLogin::DEFAULT_SOURCE, null, null,
    Zend_Gdata_ClientLogin::CLIENTLOGIN_URI, 'GOOGLE');
$gdClient = new Zend_Gdata($client);

function printAllBlogs(){
  $query = new Zend_Gdata_Query('http://www.blogger.com/feeds/default/blogs');
  $feed = $gdClient->getFeed($query);
  printFeed($feed);
}

function printFeed($feed){
  $i = 0;
  foreach($feed->entries as $entry) {
    print $i ." ". $entry->title->text . "\n";
    $i++;
  }
}

?>

我认为这不应该太疯狂......还没有找到解决方案。谢谢!

1 个答案:

答案 0 :(得分:1)

您说您正在使用Blogger API,但是对于搜索博客,您应该使用Blog Search API,我认为。

编辑:这只适用于Javascript,显然......