【发布时间】:2020-01-31 03:30:09
【问题描述】:
我正在我的机器上设置 Prebid Server 沙箱。我正在使用 PBS 项目中的示例代码/对象。当我拨打拍卖电话以获取示例广告时,我希望取回在http://prebid.org/prebid-server/endpoints/openrtb2/auction.html 找到的示例“hello world”对象,但我是一个非常小的数据对象(如下所列)丢失像bid和bid.adm这样的关键信息。有人有想法么?谢谢。
端点网址: 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
}
}
【问题讨论】: