github.com/prebid/prebid-server@v0.275.0/adapters/screencore/screencoretest/exemplary/video-app.json (about) 1 { 2 "mockBidRequest": { 3 "id": "some-request-id", 4 "device": { 5 "ua": "test-user-agent", 6 "ip": "123.123.123.123", 7 "language": "en", 8 "dnt": 0 9 }, 10 "tmax": 1000, 11 "user": { 12 "buyeruid": "awesome-user" 13 }, 14 "app": { 15 "publisher": { 16 "id": "123456789" 17 }, 18 "cat": [ 19 "IAB22-1" 20 ], 21 "bundle": "com.app.awesome", 22 "name": "Awesome App", 23 "domain": "awesomeapp.com", 24 "id": "123456789" 25 }, 26 "imp": [ 27 { 28 "id": "some-impression-id", 29 "tagid": "ogTAGID", 30 "video": { 31 "mimes": [ 32 "video/mp4" 33 ], 34 "w": 640, 35 "h": 480, 36 "minduration": 120, 37 "maxduration": 150 38 }, 39 "ext": { 40 "bidder": { 41 "accountId": "accountId", 42 "placementId": "placementId" 43 } 44 } 45 } 46 ] 47 }, 48 "httpCalls": [ 49 { 50 "expectedRequest": { 51 "headers": { 52 "Content-Type": [ 53 "application/json;charset=utf-8" 54 ], 55 "Accept": [ 56 "application/json" 57 ], 58 "X-Openrtb-Version": [ 59 "2.5" 60 ], 61 "User-Agent": [ 62 "test-user-agent" 63 ], 64 "X-Forwarded-For": [ 65 "123.123.123.123" 66 ] 67 }, 68 "uri": "http://h1.screencore.io/?kp=accountId&kn=placementId", 69 "body": { 70 "id": "some-request-id", 71 "device": { 72 "ua": "test-user-agent", 73 "ip": "123.123.123.123", 74 "language": "en", 75 "dnt": 0 76 }, 77 "imp": [ 78 { 79 "id": "some-impression-id", 80 "video": { 81 "mimes": [ 82 "video/mp4" 83 ], 84 "minduration": 120, 85 "maxduration": 150, 86 "w": 640, 87 "h": 480 88 }, 89 "tagid": "ogTAGID" 90 } 91 ], 92 "app": { 93 "id": "123456789", 94 "name": "Awesome App", 95 "bundle": "com.app.awesome", 96 "domain": "awesomeapp.com", 97 "cat": [ 98 "IAB22-1" 99 ], 100 "publisher": { 101 "id": "123456789" 102 } 103 }, 104 "user": { 105 "buyeruid": "awesome-user" 106 }, 107 "tmax": 1000 108 } 109 }, 110 "mockResponse": { 111 "status": 200, 112 "body": { 113 "id": "awesome-resp-id", 114 "seatbid": [ 115 { 116 "bid": [ 117 { 118 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 119 "impid": "some-impression-id", 120 "price": 3.5, 121 "adm": "awesome-markup", 122 "adomain": [ 123 "awesome.com" 124 ], 125 "crid": "20", 126 "w": 1280, 127 "h": 720, 128 "mtype": 2 129 } 130 ], 131 "seat": "screencore" 132 } 133 ], 134 "cur": "USD" 135 } 136 } 137 } 138 ], 139 "expectedBidResponses": [ 140 { 141 "bids": [ 142 { 143 "bid": { 144 "id": "a3ae1b4e2fc24a4fb45540082e98e161", 145 "impid": "some-impression-id", 146 "price": 3.5, 147 "adm": "awesome-markup", 148 "crid": "20", 149 "adomain": [ 150 "awesome.com" 151 ], 152 "w": 1280, 153 "h": 720, 154 "mtype": 2 155 }, 156 "type": "video" 157 } 158 ] 159 } 160 ] 161 }