如何仅使用用户帐户ID创建AdSense广告?

时间:2011-09-28 15:28:23

标签: adsense

我有一个包含文章的网站,我想与文章作者分享文章的adsense收入(百分比为90%)。我we created a PHP code that rotates the ads, but I have a problem. I我们发现帐号ID不够,我也需要一个广告位号。

如果用户只向我发送他的帐户ID会更好,因为否则每个用户都需要在其自己的adsense帐户中创建广告并向我发送完整的代码,而不是我需要检查是否广告是我需要的尺寸。

有什么建议吗?是否可以仅按用户ID旋转广告?

1 个答案:

答案 0 :(得分:0)

您可以使用旧的(但运作良好的)AdSense代码。它看起来像这样:

<script>
    google_ad_client="YOUR-PUB-ID";
    google_ad_width=300;
    google_ad_height=250;
    google_ad_format="300x250_as";
    google_ad_type="image";
    google_color_border="f3f3f3";
    google_color_bg="f3f3f3";
    google_color_link="313135";
    google_color_text="626262";
    google_color_url="2c89bc";
    google_ui_features="rc:0";
</script>
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>

可用google_ad_type: “文字_”, '文本', '图片', 对于链接单元:省略此参数。

广告格式为: 728x90_as(排行榜), 468x60_as(横幅), 234x60_as(半旗), 125x125_as(按钮), 120x600_as(摩天大楼), 160x600_as(宽幅摩天大楼), 180x150_as(小矩形), 120x240_as(垂直横幅), 200x200_as(小广场), 250x250_as(平方), 300x250_as(矩形), 336x280_as(大矩形)

链接单元格式: 120x90_0ads_al(4个链接), 120x90_0ads_al_s(5个链接), 160x90_0ads_al(4个链接), 160x90_0ads_al_s(5个链接), 180x90_0ads_al(4个链接), 180x90_0ads_al_s(5个链接), 200x90_0ads_al(4个链接), 200x90_0ads_al_s(5个链接), 468x15_0ads_al(4个链接), 468x15_0ads_al_s(5个链接), 728x15_0ads_al(4个链接), 728x15_0ads_al_s(5个链接)

玩吧。其他值是自解释的...宽度/高度必须与所选广告格式的宽度和高度相匹配。这就是我们在Pagewizz.com和Wizzley.com上与成千上万用户一起做的事情。