当前位置:首页 > Union > 正文内容

把Google Adsense收入报表RSS输出

admin2007-09-27Union1191

这是一个简单的脚本,通过Google Adsense API 接口为 Google Adsense 的收入报表创建 RSS 输出,你可以用你喜欢的RSS阅读工具来查看Adsense 的收入情况。

设置和使用:
1. 复制下面的代码保存为一个任何名字的.php文件。
2. 修改代码前面几行中你的 Google adsense 用户名,密码等信息。
3. 上传你修改后的php文件到你的服务器的一个秘密的地方(防止别人查看你的收入情况),这样就可用你的RSS阅读工具来查看 Google Adsense 的收入了。


< ?php
/*
Hack Name: Adsense to RSS
Version: 1.0
Hack URI: http://frenchfragfactory.net/ozh ... rnings-in-rss-feed/
Description: Follow your Adsense earnings with an RSS reader
Author: Ozh
Author URI: http://planetOzh.com
*/

/************ SCRIPT CONFIGURATION ***********/
/*********************************************/

$username="you@email.com";
// your adsense username

$password="MySuPeRpAsSwOrD";
// your adsense password

$daterange = 20 ;
// range of days to aggregate in RSS reader

$cookie="./.cookiefile";
// a temp file name - you mostly don't care about this
// This will create a hidden file in the current directory. If it seems to fail,
// replace with a full physical path (i.e. /home/you/temp/cookiefile)

/************ DO NOT MODIFY BELOW ************/
/*********************************************/

$daysbefore = mktime(0, 0, 0, date("m") , date("d") - $daterange, date("Y"));
list ($d_from,$m_from,$y_from) = split(':',date("j:n:Y", $daysbefore));
list ($d_to,$m_to,$y_to) = split(':',date("j:n:Y"));

/* Following lines are based on a script found on WMW forums */
/* http://www.webmasterworld.com/forum89/5349.htm */

$destination="/adsense/report/aggregate?"
."sortColumn=0"
."&reverseSort=false"
."&csv=true"
."&product=afc"
."&dateRange.simpleDate=today"
."&dateRange.dateRangeType=custom"
."&dateRange.customDate.start.day=$d_from"
."&dateRange.customDate.start.month=$m_from"
."&dateRange.customDate.start.year=$y_from"
."&dateRange.customDate.end.day=$d_to"
."&dateRange.customDate.end.month=$m_to"
."&dateRange.customDate.end.year=$y_to"
."&unitPref=page"
."&reportType=property"
."&searchField="
."&groupByPref=date";

$postdata="destination=".urlencode($destination)."&username=".urlencode($username)."&password=".urlencode($password)."&null=Login";

$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL,"https://www.google.com/adsense/login.do");
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)");
curl_setopt ($ch, CURLOPT_TIMEOUT, 20);
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION,1);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_COOKIEJAR, $cookie);
curl_setopt ($ch, CURLOPT_COOKIEFILE, $cookie);
curl_setopt ($ch, CURLOPT_POSTFIELDS, $postdata);
curl_setopt ($ch, CURLOPT_POST, 1);
$result = curl_exec ($ch);
curl_close($ch);

$result=preg_split("/\n/",$result);
array_pop($result);
array_pop($result);
array_shift($result);
$result = array_reverse($result);

header('Content-type: text/xml');
echo '‘;
echo “\n”;
?>

xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
>
https://www.google.com/adsense/ An RSS feed of my Adsense earnings for the last < ?php echo $daterange ?> days
en
< ?php

$firstday=1;

foreach ($result as $line) {
$item = array();
$line = str_replace("\x00",'',$line);
$line = str_replace('"','',$line);
list($day, $pages, $clicks, $ctr, $eCPM, $income) = preg_split("/\s/",$line);
$item['title']= "
$item[’guid’] = ‘‘ . md5($username.$day) . ““;
$day = split(’/',$day);
$day = mktime(0, 0, 0, $day[1] , $day[0], $day[2]);
if ($firstday == 1) {
$day = date(”D, d M Y H:i:s +0000〃);
$firstday = 0;
} else {
$day = date(”D, d M Y H:i:s +0000〃, $day);
}
$item[’pubDate’] = “
$day“;
$item[’category’] = ““;
$item[’description’] = “\$$income ($clicks clicks on $pages pages : CTR = $ctr - eCPM = $eCPM)“;
$item[’content’] = “< ![CDATA[

]]>“;

print “\n”;
print $item[’title’] .”\n”;
print $item[’guid’] .”\n”;
print $item[’pubDate’] .”\n”;
print $item[’category’] .”\n”;
print $item[’description’] .”\n”;
print $item[’content’] .”\n”;
print “\n”;

}
?>

打赏

扫描二维码推送至手机访问。

版权声明:本文由友声网博客发布,如需转载请注明出处。

本文链接:https://hi.ys166.com/t/23

分享给朋友:

发表评论

访客

看不清,换一张

◎欢迎参与讨论,请在这里发表您的看法和观点。