我创建了一个php脚本来检索谷歌学者的结果。
function getUserScholarPage($authorId){
$userUrl = "http://scholar.google.it/citations?hl=it&user=" . $authorId . "&view_op=list_works&pagesize=10000";
$html = file_get_html($userUrl);
$rows = $html->find('#gsc_a_b tr[class="gsc_a_tr"]');
return $rows;
}
function getUserScholarBibliography( $rows ){
$publications = array();
foreach( $rows as $row ){
$citations = str_replace(' ', '', $row->find('td[class="gsc_a_c"] a', 0)->plaintext) != '' ? trim($row->find('td[class="gsc_a_c"] a', 0)->plaintext) : 0;
$year = ($row->find('td[class="gsc_a_y"]', 0)->plaintext) ? trim($row->find('td[class="gsc_a_y"]', 0)->plaintext) : 0;
$url = getRealPaperURL('http://scholar.google.it' . $row->find('a[class="gsc_a_at"]',0)->href);
$type = 'ARTICLE';
$title = trim($row->find('a[class="gsc_a_at"]',0)->innertext);
$publications[] = array(
'type' => $type,
'title' => $title,
'authors' => trim($row->find('div[class="gs_gray"]',0)->innertext),
'journal' => trim(preg_replace("'<span[^>]*?>.*?</span>'si", '', $row->find('div[class="gs_gray"]',1)->innertext)),
'citations' => $citations,
'year' => $year,
'url' => $url,
'unique_identifier' => hash('md5', $year . $url . $title)
);
}
return $publications;
}
但是在调用查询时遇到问题。 我收到一个错误:
警告:file_get_contents(http://scholar.google.it/citations?hl=it&user=XXXXXXX&view_op=list_works&pagesize=10000):无法打开流:HTTP请求失败! HTTP / 1.0 503服务不可用 在第78行的/var/www/html/scholar/simple_html_dom.php
第78行-simple_html_dom.php
https://github.com/samacs/simple_html_dom/blob/master/simple_html_dom.php
致命错误:在第21行的/var/www/html/scholar/scholar-biblio-loader.php中调用非对象的成员函数find()
第21行-scholar-biblio-loader.php
$rows = $html->find('#gsc_a_b tr[class="gsc_a_tr"]');
如果我在localhost中运行脚本。 如果我在我的服务器上运行脚本给我错误
谷歌阻止通话?有什么问题?由于