Giter Club home page Giter Club logo

Comments (2)

ehuss avatar ehuss commented on June 13, 2024 1

The write_function will be called repeatedly as data is received over the wire. In your example, you are feeding a partial JSON blob to serde_json which will fail since it hasn't received the entire output. Depending on what you need to do, you'll either need to buffer the results in memory, or stream them to some other place (like a file, stdout, etc.). The write_function docs go into more detail.

from curl-rust.

javiorfo avatar javiorfo commented on June 13, 2024

Thanks, @ehuss
You was right about it. My mistake!

Just in case someone has the same problem a leave my solution for this problem:

fn main() {
    let buf = RefCell::new(Vec::new());
    let mut handle = Easy::new();
    handle.url("https://start.spring.io").unwrap();
    handle.accept_encoding("application/json").unwrap();

    let mut transfer = handle.transfer();
    transfer.write_function(|data| {
        buf.borrow_mut().extend_from_slice(data);
        Ok(data.len())
    }).unwrap();
    transfer.perform().unwrap();
    
    let borrowed = buf.borrow();
    let value: Value = serde_json::from_slice(borrowed.as_slice()).unwrap();
    println!("{:?}", value);
}

Thanks!

from curl-rust.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.