Python错误地格式化GAE app的AdSense代码?`

时间:2013-08-14 01:57:16

标签: python google-app-engine adsense

我有一个AdSense广告嵌入到页面http://mostpopnews.appspot.com/(在最右边的列/空白处)(与GAE中使用的Python代码的其余html一起)。大约4天后我创建并将广告脚本嵌入到网站中,但广告状态没有从“新”更改为“活动”。我不确定为什么会出现这种情况,因为我有其他博客很快转换为Active。可能因为网站还没有编入索引?我的主要假设是用于编写AdSense脚本的Python代码搞砸了我无法看到的HTML格式。任何想法/

用于编写adsense脚本的Python代码:

MAIN_PAGE_HTML = MAIN_PAGE_HTML + '''
<script type="text/javascript"><!--
google_ad_client = "ca-pub-9089661734099673";
/* Top News */
google_ad_slot = "3468761149";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
'''

网页的源代码显示:

<script type="text/javascript"><!--
google_ad_client = "ca-pub-9089661734099673";
/* Top News */
google_ad_slot = "3468761149";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>

0 个答案:

没有答案