我在我的网站上使用Revive Adserver,我遇到了定位问题。
这是我的调用代码
var m3_u = (location.protocol=='https:'?'https://ads.pingola.ru/www/delivery/ajs.php':'http://ads.pingola.ru/www/delivery/ajs.php');
var m3_r = Math.floor(Math.random()*99999999999);
if (!document.MAX_used) document.MAX_used = ',';
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
document.write ("?zoneid={{item_zone_id}}");
{% if target_params != ''%}
document.write ("{{target_params}}");
{% endif %}
document.write ('&cb=' + m3_r);
if (document.MAX_used != ',') document.write ("&exclude=" + document.MAX_used);
document.write (document.charset ? '&charset='+document.charset : (document.characterSet ? '&charset='+document.characterSet : ''));
document.write ("&loc=" + escape(window.location));
if (document.referrer) document.write ("&referer=" + escape(document.referrer));
if (document.context) document.write ("&context=" + escape(document.context));
if (document.mmm_fo) document.write ("&mmm_fo=1");
document.write ("'><\/scr"+"ipt>");
此代码delivery/ajs.php?zoneid=15&category=cars&make=Mazda&model=2&body=hatchback&price=640000&year=2013&vol=1500&fuel=gasoline&cond=excellent&kpp=automatic&color=red&isNew=1&cb=1702326047&charset=UTF-8&loc=http
如果没有设置交付选项横幅显示,一切都很好。如果我设置交付限制站点 - Varieble(f.e。类别是等于汽车)横幅不显示。有趣的事实 - 如果我设置类别与汽车横幅显示不同。
答案 0 :(得分:0)
根据documentation,您必须在请求中使用c.
作为变量的前缀:
要将其与其他类型的广告调用参数区分开来,自定义KVP必须以
c.
命名空间为前缀。例如:
c.topic=sports
(其中topic
为关键字,sports
为值)
所以我猜这个请求应该是这样的:
delivery/ajs.php?zoneid=15&c.category=cars&c.make=Mazda&c.model=2&c.body=hatchback&c.price=640000&c.year=2013&c.vol=1500&c.fuel=gasoline&c.cond=excellent&c.kpp=automatic&c.color=red&c.isNew=1&cb=1702326047&charset=UTF-8&loc=http