Learn Rust Together: Making an HTTP Request

Поділитися
Вставка
  • Опубліковано 25 жов 2021
  • In this video I use the Rust Reqwest crate to fetch some data from a REST API!
    We also pull environment variables from a .env file using the dotenv crate and deserialize our response using the serde crate
    Crates Used:
    reqwest: github.com/seanmonstar/reqwest
    dotenv: www.npmjs.com/package/dotenv
    serde: github.com/serde-rs/serde
    VSCode Theme (GrayJack): marketplace.visualstudio.com/...
  • Наука та технологія

КОМЕНТАРІ • 10

  • @mrbig2648
    @mrbig2648 2 роки тому +9

    Thanks for the shoutout :) I'm really enjoying your Rust series so far. I'll hopefully come back to this video sometime next month, once I've done the rest of the videos.

  • @KelvinKirima
    @KelvinKirima Рік тому +1

    I rarely comment on UA-cam videos, but this one is really, really good. Good job man!

    • @TomMcGurl
      @TomMcGurl  Рік тому +1

      Appreciate it! Glad you enjoyed it and thank you for watching!! 👍👍

    • @KelvinKirima
      @KelvinKirima Рік тому

      @@TomMcGurl I'm glad I found your channel!

  • @n0kodoko143
    @n0kodoko143 Рік тому

    I've been struggling with everything headers using reqwest. Thank you so much!

  • @morecoinbull
    @morecoinbull Рік тому +1

    Your videos are incredibly helpful. I hope you keep it up!!!

  • @leu2304
    @leu2304 2 роки тому

    Great Video, Thanks! Tried the same with actix web client seems much harder

  • @nathangetty4892
    @nathangetty4892 Рік тому +1

    How many more bells and whistles you think you can add to your windows terminal

  • @isiktantanis
    @isiktantanis 10 місяців тому

    First of all, great video, thank you. But I feel like it'd be better if the videos were edited and had a faster pace. Best.

  • @kamalkamals
    @kamalkamals Рік тому +1

    why u keep use the code in main function, why no try to move all code in another file and imported as mod then run it !!!!