We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Validation schema is correct but the sample code on README is wrong type.
var bidRequestBuilder = openrtb.getBuilder({ builderType: 'bidRequest' }); var bidRequest = bidRequestBuilder .timestamp(moment.utc().format()) .id('1234') .at(2) .imp([ { "id":"1", "native":{ "request": { "ver": 1, "layout": 6, "assets": [ { "id": 0, "req": 1, "title": { "len": 25 } }, { "id": 1, "req": 1, "img": { "type": 3, "wmin": 100, "hmin": 100 } }, { "id": 3, "req": 0, "data": { "type": 2, "len": 90 } } ] } }, ...
to
var bidRequestBuilder = openrtb.getBuilder({ builderType: 'bidRequest' }); var bidRequest = bidRequestBuilder .timestamp(moment.utc().format()) .id('1234') .at(2) .imp([ { "id":"1", "native":{ "request": JSON.stringify({ "ver": 1, "layout": 6, "assets": [ { "id": 0, "req": 1, "title": { "len": 25 } }, { "id": 1, "req": 1, "img": { "type": 3, "wmin": 100, "hmin": 100 } }, { "id": 3, "req": 0, "data": { "type": 2, "len": 90 } } ] }) },
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Validation schema is correct but the sample code on README is wrong type.
Construct a bid request
to
Construct a bid request
The text was updated successfully, but these errors were encountered: