我正在计算机上设置Prebid Server 沙箱。我正在使用PBS项目中的示例代码/对象。当我致电拍卖获取示例广告时,我希望取回在http://prebid.org/prebid-server/endpoints/openrtb2/auction.html处找到的示例“ hello world”对象,但是我是一个很小的数据对象(如下所示),缺少诸如bid和bid.adm之类的关键信息。有人有想法么?谢谢。
端点URL: http://localhost:8000/openrtb2/auction
The Post Data Object:
{
"id": "some-request-id",
"site": {
"page": "prebid.org"
},
"imp": [
{
"id": "some-impression-id",
"banner": {
"format": [
{
"w": 300,
"h": 250
},
{
"w": 300,
"h": 600
}
]
},
"ext": {
"appnexus": {
"placementId": 10433394
}
}
}
],
"tmax": 5000
}
The Return Object:
{
"id": "some-request-id",
"ext": {
"responsetimemillis": {
"appnexus": 120
},
"tmaxrequest": 5000
}
}
答案 0 :(得分:0)
如果可以发送页面进行查看,这将有所帮助,但是,要在客户端和服务器端进行进一步的调试,可以在请求上添加&debug = 1到localhost:8000 / openrtb2 / auction。
我怀疑您的Prebid客户端实例存在设置问题,该实例需要接收此出价并将其传递给客户端拍卖以完成流程。