k-bx / openrtb-rust

OpenRTB v2.5 and OpenRTB Dynamic Native Ads v1.2 types for rust.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Travis Build Status AppVeyor Build status crates.io docs.rs

openrtb

OpenRTB v2.5 and OpenRTB Dynamic Native Ads v1.2 types for rust. Handles (de)serialization to/from JSON.

Example

extern crate openrtb;
extern crate reqwest;

use std::error::Error;

use openrtb::current::{BidRequest, BidResponse};
use reqwest::StatusCode;

fn main() -> Result<(), Box<Error>> {
    let id = "f9b54eb8-6f3b-11e8-adc0-fa7ae01bbebc".to_string();
    let req = BidRequest::new(id);

    let client = reqwest::Client::new();
    let mut res = client
        .post("https://prebid.adnxs.com/pbs/v1/openrtb2/auction")
        .json(&req)
        .send()?;

    match res.status() {
        StatusCode::OK => {
            let res: BidResponse = res.json()?;
            println!("Received bids for req {}.", res.id);
        }
        StatusCode::NO_CONTENT => {
            println!("No bids.");
        }
        _ => {
            println!("Error: {:?}", res);
        }
    }

    Ok(())
}

About

OpenRTB v2.5 and OpenRTB Dynamic Native Ads v1.2 types for rust.

License:Apache License 2.0


Languages

Language:Rust 100.0%