4

我正在为我的网站建立一个小后台,我想在其中显示网站管理员工具数据,我一辈子都无法弄清楚!

有没有人有任何使用 PHP 的 API 从网站管理员工具中提取数据的 PHP 示例,我没有得到文档,并且找到了一个看起来不再有效的 php 类,但是那里已经有一个可以工作的类了吗?

如果我有一个开始的例子,我想我可以弄清楚其余的,我已经在谷歌上搜索了几天,但没有任何成功。

如果我可以拉出属于我帐户的网站列表,那将是一个开始!

为了记录,我一直在 google 的文档中挖掘,但我不能成为第一个想要这样做的人,所以一定有人已经完成了这个工作!

任何接受者向我扔骨头?

伊恩

4

3 回答 3

3

这是一个获取站点列表的工作示例。我使用了我的xhttp 类,它是一个 PHP cURL 包装器,在使用 cURL 时隐藏了更精细的细节。

<?php

// Set account login info
$data['post'] = array(
  'accountType' => 'HOSTED_OR_GOOGLE',  // indicates a Google account
  'Email'       => '',  // full email address
  'Passwd'      => '',
  'service'     => 'sitemaps', // Name of the Google service
  'source'      => 'codecri.me-example-1.0' // Application's name'
);

// POST request
$response = xhttp::fetch('https://www.google.com/accounts/ClientLogin', $data);

// Extract Auth
preg_match('/Auth=(.+)/', $response['body'], $matches);
$auth = $matches[1];

$data = array();
$data['headers'] = array(
    'Authorization' => 'GoogleLogin auth="'.$auth.'"',
);

// GET request    
$response = xhttp::fetch('https://www.google.com/webmasters/tools/feeds/sites/', $data);

echo $response['body'];

?>

脚本所做的第一件事是通过 Google 的ClientLogin获取授权密钥。使用的服务名称是sitemaps. 您还可以使用OAuth 或 Oauth2 或 AuthSub

接下来是获取 API URL 端点以获取站点列表并仅添加Authorization标头字段。

更新:2012 年 4 月 20 日上述脚本示例中所示的客户端登录方法将不再起作用,因为它已被 Google 弃用。在此处查看详细信息:https ://developers.google.com/accounts/docs/AuthForInstalledApps

最好的解决方案是使用 Oauth 2.0 连接到 Google 网站管理员工具 API。

于 2011-06-10T14:33:19.657 回答
0

你可以使用这个类来获取数据:这个已经测试过了,帮助你获取TOP_PAGES、TOP_QUERIES、CRAWL_ERRORS、CONTENT_ERRORS、CONTENT_KEYWORDS、INTERNAL_LINKS、EXTERNAL_LINKS、SOCIAL_ACTIVITY

https://github.com/eyecatchup/php-webmaster-tools-downloads

希望这可以帮助你。

于 2013-05-31T15:17:49.027 回答
0

假设您的应用程序设置正确,这是我采用的方法的一个示例:

// Authenticate through OAuth 2.0
$credentials = new Google_Auth_AssertionCredentials(
    '1111111111-somebigemail@developer.gserviceaccount.com',
    [Google_Service_Webmasters::WEBMASTERS_READONLY],
    file_get_contents( 'path-to-your-key.p12' )
);
$client = new Google_Client();
$client->setAssertionCredentials( $credentials );
if ( $client->getAuth()->isAccessTokenExpired() ) {
    $client->getAuth()->refreshTokenWithAssertion();
}
$service = new Google_Service_Webmasters($client);

// Setup our Search Analytics Query object
$search = new Google_Service_Webmasters_SearchAnalyticsQueryRequest;
$search->setStartDate( date( 'Y-m-d', strtotime( '1 month ago' ) ) );
$search->setEndDate( date( 'Y-m-d', strtotime( 'now' ) ) );
$search->setDimensions( array( 'query' ) );
$search->setRowLimit( 50 );

// Pass our Search Analytics Query object as the second param to our searchanalytics query() method
$results = $service->searchanalytics->query( $url, $search, $options )->getRows();

// Build a CSV
if ( ! empty( $results ) ) {
    // Setup our header row
    $csv = "Rank,Query,Clicks,Impressions,CTR,Position\r\n";
    foreach ( $results as $key => $result ) {
        // Columns
        $columns = array(
            $key + 1,
            $result->keys[0],
            $result->clicks,
            $result->impressions,
            round( $result->ctr * 100, 2 ) . '%',
            round( $result->position, 1 ),
        );
        $csv .= '"' . implode( '","', $columns ) . '"' . "\r\n";
    }
    file_put_contents( dirname( __FILE__ ) . '/data.csv' );
}

我刚刚在我的博客上发布了一篇完整的文章,其中有一个示例类,我开始编写它作为 Webmaster Tools API 和 Analytics API 的包装器。随意将其用作参考:

http://robido.com/php/a-google-webmaster-tools-api-php-example-using-search-analytics-api-to-download-search-analytics-data-as-csv-with-the-新oauth-2-0-方法/

于 2015-10-21T17:35:04.023 回答