Using HttpClient in .NET Core to Connect to APIs in C#

Поделиться
HTML-код
  • Опубликовано: 26 ноя 2024

Комментарии • 393

  • @deltaphilip8611
    @deltaphilip8611 2 года назад +1

    This is still relevant in 2022. When I get stuck, I search for one of your videos on the topic. I like your approach.

  • @magnus7538
    @magnus7538 4 года назад +26

    That Paste Special magic blew my mind!

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +7

      Pretty cool, huh?

    • @JoeBonez
      @JoeBonez 4 года назад +1

      Ditto! Completely new to me.

    • @Max_Jacoby
      @Max_Jacoby 4 года назад +2

      Ikr, my jaw was dropped when I saw this.

    • @melleck81
      @melleck81 4 года назад +1

      I can't find it in VS for Mac?

  • @zoltan.halasz
    @zoltan.halasz 4 года назад +11

    This is my favorite kind of tutorial video. Focused, not too long, sample code. Thank you.

  • @wayahedia9989
    @wayahedia9989 3 года назад +1

    Tim. You're a Godsend. I recently spent a couple of hours writing classes for deserializing large json files. My heart sand when you pulled down the menu to convert json to classes. ! Now I have to write code to deal with multiple different devices with httpclient. I am not using DI , primarily because I don't fully understand it or how it applies to a C# WPF prog like I am developing. This was very helpful. I always love it when something I don't expect pops up in your vids. Thanks again.

  • @Funkfreed
    @Funkfreed 4 года назад +2

    This is awesome tim. Just one example and you connected us to hundreds of API free for consumption such as spotify or twitter APIs.

  • @bavman2130
    @bavman2130 4 года назад +10

    Thanks so much Tim, you have a way of explaining things that make it easy to understand and gives context. Much appreciated!

  • @mrcalico7091
    @mrcalico7091 4 года назад +3

    Cool, finally some up-to-date Http client information. Thanks Corey.

  • @williamsworkshop8624
    @williamsworkshop8624 4 года назад +24

    Another great video! Even as a relatively experienced dev, there's always something I'm learning from you. Very helpful.

  • @jugghayd
    @jugghayd 4 года назад +8

    15:50 "I don't think there's a weather icon"
    oi-rain is perfect for it!

  • @jackie4u
    @jackie4u Год назад +1

    Thank you for great step by step lesson on HttpClient. I have used couple of time, but the one-liner trick is so great!

  • @HeathInHeath
    @HeathInHeath Год назад +3

    BTW, this is a truly valuable lesson. I really learned a lot about the theory as well as the nuts and bolts of getting it working. Thanks.

  • @saadaldulaijan4957
    @saadaldulaijan4957 4 года назад +9

    Thank you tim for the great content, past as json is really great 👍🏻

  • @varun25aggarwal
    @varun25aggarwal 2 года назад +1

    Thanks! I want to create a project for hands-on, but was banging my head on stackoverflow and ms documentations, got this great resource, you are doing a great job.👍

  • @jonathanvargas9856
    @jonathanvargas9856 2 года назад +1

    Thanks a lot! It was great how you went to complex way to simplest way for us to comprehend the whole concepts. I loved it!

  • @daniellister4701
    @daniellister4701 4 года назад +2

    Loving the config file usage, good to know. Also, the one liner for a connection string is fantastic. Thanks again Tim

  • @wmd5645
    @wmd5645 4 года назад +5

    Im really wishing my university would have been teaching this stuff 4 years ago. MS VS is so nice.

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      It is a great IDE.

    • @mrcalico7091
      @mrcalico7091 4 года назад +1

      They were teaching us Ada & Fortran at USC back in the 80s when the industry was using C & Visual Basic! Thank god, I was working in the industry more than going to class back then. I'm a big believer of learning computer science and software development online instead of in schools.

    • @alexanderkorn2009
      @alexanderkorn2009 4 года назад

      @@mrcalico7091 Feels like it's now happening as the trend that will change the surface of an education methods dramatically. Those days when online courses have been looking just like the way to spend time are almost gone.

    • @ZoidbergForPresident
      @ZoidbergForPresident 4 года назад

      @@mrcalico7091 Not everyway is for everyone, one way or the other. ;)

  • @matthewlevis4436
    @matthewlevis4436 4 года назад +59

    Would be good to see how authorization would be applied to the API Client() as well e.g. Auth0

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +33

      I will add it to the list. Thanks for the suggestion.

    • @HungTran-jx2xc
      @HungTran-jx2xc 4 года назад

      @@IAmTimCorey Thank Tim, I'm looking forward this topic.

    • @sunnyokoro
      @sunnyokoro 4 года назад +1

      I think it would be added after creating the client, that is at the point of usage.

    • @snitkjaer
      @snitkjaer 4 года назад

      Agree adding httpClient auth token handling would be great!

    • @russellkemmit73
      @russellkemmit73 3 года назад

      @@IAmTimCorey Would love to see this TIm

  • @cenaruthedruid
    @cenaruthedruid 4 года назад +3

    That was awesome, I am going to try to use this in some little app tests tonight!

  • @pilotboba
    @pilotboba 4 года назад +2

    Nice info. I think the next step would be to refactor the httpclient code out of the razor page into a weatherService class that does all that work, and inject the weatherService into the razor page to keep your layers and responsibilities de-coupled.

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +2

      Yep, that would be ideal. Get the data access out of the UI for sure.

  • @elisunday1304
    @elisunday1304 3 года назад +1

    Paste Special...and my mind was completely blown.

  • @Korodak
    @Korodak 4 года назад

    Im staring to doing some research in blazor and you have been publish this video.

  • @dakathulatris728
    @dakathulatris728 4 года назад

    I have a technical interview next week, youre helping me so much! Thank you!

  • @frankhaugen
    @frankhaugen 4 года назад +2

    I recently stumbled upon a library called Flurl which wrappes the HttpClient in a very neat little fluent API

  • @carsugarmodels
    @carsugarmodels 2 года назад +1

    AS always, understandable and lovely video!

  • @ronrondk
    @ronrondk 4 года назад +1

    Great video Tim. You should go further and do a video on typed HttpClients and maybe the use of a HttpClientHandler with it.

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +2

      Thanks for the suggestion, added to the list.

  • @sylviogiraldes
    @sylviogiraldes 2 года назад

    Great video Tim. You have always something else to teach. Tks

  • @adamkarafyllidis9264
    @adamkarafyllidis9264 3 года назад

    Great as always! You can add to your list, a video about client/server WebSocket tutorial if you want!

  • @DevJonathanRamos
    @DevJonathanRamos 4 года назад +2

    To get properly named json to c# classes you can get them from quicktype.io/csharp/. Then just change the JsonProperty to JsonPropertyName, and add the System.Text.Json.Serialization reference. Thanks for the video Tim.

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      Thanks for sharing.

    • @torrvic1156
      @torrvic1156 11 месяцев назад

      Thank you so much sir! That was very important thing to know.

  • @ademineshat
    @ademineshat 4 года назад +1

    As allways. Very well explained 👌 Thank you!

  • @WhitbyStuff
    @WhitbyStuff 2 года назад

    Ah, the joys of RUclips when you search for how to call an old SOAP webservice in Blazor and you're a way into the suggested video before you realise that's not what's being explained at all and you've wasted time you don't have.

    • @IAmTimCorey
      @IAmTimCorey  2 года назад +1

      Bummer. You could probably take the new ways of talking to HttpClient from this video and combine it with the answer to this Stack Overflow question: stackoverflow.com/a/20108971/733798

  • @nathanjenner
    @nathanjenner 7 месяцев назад

    Hi, this video was great. Really easy to follow and understand. Thank you.

  • @ericclaiborne7741
    @ericclaiborne7741 4 года назад +1

    Great video, I managed to get my WebAssy app to call API working using this. Definitely had issues with CORS as you mentioned. Also need to see how to send with JWT auth. Also had issue getting config from the program.cs in the WebAssy app (no startup.cs). So I'll be looking forward to another video with a WebAssy app that covers all this. Thanks!

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      Suggested topic noted and added to the list

  • @vinzer72frie
    @vinzer72frie 4 года назад +2

    Wow I didn't know that paste json classes its pretty useful for third party api

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      Yeah, that's a nice feature.

  • @beerguy1320
    @beerguy1320 2 года назад

    Hi Tim. Thanks for the tutorial!

  • @mikemurphy1824
    @mikemurphy1824 2 года назад

    Hi Tim, Great Job! I just found your channel and will be a regular from now on. I see in some of the comments there was mention of a video showing how to POST data. Have you posted one of those yet?

  • @dasfahrer8187
    @dasfahrer8187 3 года назад

    Take a shot every time Tim spins his mouse cursor around in circles.

    • @IAmTimCorey
      @IAmTimCorey  3 года назад +1

      I’m getting a display I can stand in front of to solve this type of problem.

    • @dasfahrer8187
      @dasfahrer8187 3 года назад +1

      @@IAmTimCorey I'm going to miss getting bombed watching your videos.

  • @adrianspikes6454
    @adrianspikes6454 2 года назад +1

    Hi Tim, would this method work for calling an API that is a completely separate app? From debugging the code I have noticed that my "client" is NULL therefore I believe my Blazor App is not finding the URI that is supplied! Tried several different techniques but to no avail.
    I have looked thru MS documentation, watched this video several times while taking notes and viewed videos from Nick Chapass /Raw Coding but neither are using separate apps. Any help from yourself or other pupils would be appreciated. Thanks.

  • @dheerajthodupunoori7431
    @dheerajthodupunoori7431 4 года назад +2

    would be good , if you have some video on HttpClient(POST) , with some advanced concepts
    like sending IFormFile in post request , send parameters to post request

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +2

      I will add it to the list. Thanks for the suggestion.

  • @pardhasaradhivasamsetty7693
    @pardhasaradhivasamsetty7693 2 года назад

    Thank you it helped me. Appreciate your contributions.

  • @tassarna93
    @tassarna93 2 года назад +1

    Hello, i have my solution structured like Client -- Server -- Shared, I have to somehow access the HttpClient on my server project in my Client project to reach IHttpClientFactory, anyway to resolve this?

    • @IAmTimCorey
      @IAmTimCorey  2 года назад +1

      Those are separate projects. You cannot access a class instance across those projects. You will need to create a IHttpClientFactory on your client project as well, not just on your server project.

    • @tassarna93
      @tassarna93 2 года назад

      @@IAmTimCorey Awesome, thanks!

  • @Noceo
    @Noceo 4 года назад +1

    Awesome video, as always. The only thing I do not get, is why you would want to convert Celsius to Fahrenheit 🤔

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +4

      Because the US is backwards. We cling to 32 degrees as freezing, 212 degrees as boiling, 5,280 feet in a mile,12 inches in a foot, etc. Doesn't that sound simpler? 😂

  • @cbirchy87
    @cbirchy87 4 года назад +1

    Great help! I could mind a video on api with auth and sending bodies etc. Also some SignalR would be useful. Thanks Tim :)

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +2

      I will add it to the list. Thanks for the suggestion.

  • @felixw4683
    @felixw4683 4 года назад

    Great video! You are awesome, thank you ,Tim

  • @abib07
    @abib07 4 года назад

    Great tutorial. Keep up the good work👍

  • @AnaHelena
    @AnaHelena 4 года назад

    Great video, Tim! Thanks a lot

  • @yingxing4134
    @yingxing4134 3 года назад +1

    Tim, first of all thank you for all the great tutorials! My job schedule is very demanding but I am able to find 20 minutes here and 30 minutes there to follow them. Do you have an ordered index of all the videos? It would be great to go though them in the proper order, right now I am guessing from the names and upload dates.

  • @andreypestunov2922
    @andreypestunov2922 4 года назад +1

    Thank you friend! You the best!

  • @dreddy5187
    @dreddy5187 2 года назад +1

    Can you extract the api call and model creation into a service class to clean up this code and make it more reusable?

  • @werachatnawaroongruang1330
    @werachatnawaroongruang1330 2 года назад

    Very useful content. Thank you for your sharing.

  • @Robert723
    @Robert723 9 месяцев назад

    Great video, thanks for sharing!

  • @talkathiriify
    @talkathiriify 4 года назад

    Excellent explanation.
    Thank you very much

  • @jamiefones7042
    @jamiefones7042 4 года назад +3

    Hi Corey! Could you do this tutorial on Blazor Web Assembly? How would this differ?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +2

      I can add that to the suggestion list.

  • @fobiozor19
    @fobiozor19 4 года назад +1

    Great tutorial! Could you share how you would decorate a C# property to change it to a C# naming convention?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      I will add it to the list. Thanks for the suggestion.

  • @romedov882
    @romedov882 4 года назад

    A very informative video. Thank you!

  • @tcl78
    @tcl78 3 года назад +1

    It is not clear to me why you use System.Net.Http.Json instead of Microsoft.AspNet.WebApi.Client as you did in a previous video on api calls... What's the difference? Why use one instead than the other? Which one should we use?

    • @IAmTimCorey
      @IAmTimCorey  3 года назад +2

      Those are two different libraries. We are using Http.Json to handle translating the data from and to JSON. WebApi.Client does a lot more with connecting to the web. It isn't something we need in this instance.

  • @sunnyokoro
    @sunnyokoro 4 года назад

    this was very helpful. Thanks for sharing

  • @patyue5012
    @patyue5012 3 года назад +1

    I wonder what is the difference between WebApi and HttpClient as you have two different videos with different setup. Thank you.

    • @IAmTimCorey
      @IAmTimCorey  3 года назад +2

      WebAPI is the API itself (the project that sends data to anyone who calls it - swapi.dev is an API). HttpClient is the utility in C# to call an API and get the data.

  • @nisimkd1
    @nisimkd1 4 года назад +1

    Hi Tim, great video, thank you!
    What do you think about using the Nuget package Newtonsoft.Json in the .net core project?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +2

      The new System.Text.Json package is faster, so if you are able to use it and don't need the more advanced features of Newtonsoft, I would recommend going that way.

    • @nisimkd1
      @nisimkd1 4 года назад

      Thank you, Tim.
      Where can I see the features of System.Text.Json?

  • @pylvr8021
    @pylvr8021 4 года назад +2

    Thanks tim i will watch this later tonight ,Blazor is amazing especially the client version the only thing bugging me is the CSS isolation hope they will add the feature soon,
    is it possible to share with us the course that you will publish next here on youtube or on your website ?

    • @saurabhchauhan232
      @saurabhchauhan232 4 года назад +1

      This would be really helpful, knowing you have already said in road map video still want to know what will be as free content on youtube

    • @IAmTimCorey
      @IAmTimCorey  4 года назад

      I don't have a public roadmap to share at this point but I'm hoping to make some announcements in the next few weeks.

  • @dougstanley8942
    @dougstanley8942 2 года назад +1

    Thanks!

  • @martinchristiansen556
    @martinchristiansen556 4 года назад +2

    I need to consume an endpoint that returns a JSON array (that is, the JSON text starts with a '['-character). Generating the model from JSON with "Paste Special" works fine. However, because the received JSON represents an array and not a single object, I think that "Paste Special" is doing it wrong when it generates a *single* Rootobject (with an array inside of it). And obviously it doesn't work either, because the *ReadFromJsonAsync()* throws an exception on the first JSON character it sees (the '['). Is there a trick that I can use to consume the JSON anyway?

    • @martinchristiansen556
      @martinchristiansen556 4 года назад +2

      I think I found the answer myself: Just disregard the genereted *RootObject* class and do a *ReadFromJasonAsync()* instead (where *Class1* is the generated type of the objects inside the JSON array)

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      Since it is sending back an array, you just ask for an array of the RootObject, yes.

    • @DoctorDoomsPvP
      @DoctorDoomsPvP 3 года назад

      @@martinchristiansen556 Thanks, this might fix the issue I'm having too. I was trying to pull in a JSON RootObject that contains a list of objects but I guess I just need to read directly into the list.

  • @juniorpacheco6795
    @juniorpacheco6795 4 года назад

    Great example, I liked new razor.

  • @mosescodes3677
    @mosescodes3677 2 года назад

    Thank you so much, this is really useful

  • @RomanSuska
    @RomanSuska 4 года назад +1

    Thank you for the video Tim. Can you make a video how to use properly HttpClient in a project that has not built-in dependency injection, e.g. Console App, WPF App or Windows Service?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +5

      Those all have built-in dependency injection in .NET Core (although it is not turned on by default). I can add showing that to my suggestion list.

  • @juanignaciobruzzone2896
    @juanignaciobruzzone2896 3 года назад +1

    Thank you for this amazing guide, do you know by any chance how to send a GET request to a blazor page and capture it?

  • @philibertande3097
    @philibertande3097 2 года назад +2

    Hi Tim,
    I have a very important question. The problem with IHttpclientFactory is that when used for a service like in blazor, it always creates a Transient, Service. But most of the time we want the service to be Scoped as an example to make it clearer. With Httpclient we write for a scoped service
    in program.cs of the client.WASM in NET6.
    builder.Services.AddScoped(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
    builder.Services.AddScoped();
    which is scoped fine. But with IHttpclientFactory we would have
    builder.Services.AddHttpClient(client =>
    {
    client.BaseAddress = new Uri(builder.HostEnvironment.BaseAddress);
    });
    Which is transient which is not what we want! we want it scoped when injected in a component. How can we make this IHttpclientFactory create a scoped service here for (IProductService, ProductService)!!? The' easiest way possible?!!
    Thank you for your help.

    • @IAmTimCorey
      @IAmTimCorey  2 года назад +1

      You might need to stick with HttpClient for that (see the docs here: learn.microsoft.com/en-us/dotnet/core/extensions/httpclient-factory#httpclient-lifetime-management ). If that doesn't explain it well enough, you probably need to ask this question on Stack Overflow.

  • @harisahsan3740
    @harisahsan3740 4 года назад

    That was awesome Explanation

  • @ZoidbergForPresident
    @ZoidbergForPresident 4 года назад

    Cool stuff, sir!

  • @visionmajor7300
    @visionmajor7300 4 года назад

    Hey Tim you have been great thank you.

  • @paulpieniadz1002
    @paulpieniadz1002 4 года назад +1

    How do you deal with making API calls to a SQL Server instance hosted locally? I'm using EF Core and EF SQLServer and can get it to work locally when debugging, but for some reason get the 500 Server error when hosting it on IIS and accessing it through a client browser. Any thoughts?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      I am not sure where in your configuration you have an issue, but something isn't set up right. Maybe your website needs to have the connection string updated. Maybe there is a permissions issue with the username and password in the connection string. Maybe the issue is somewhere else entirely.

  • @xPa7r1cKx
    @xPa7r1cKx 4 года назад +1

    Lets assume you have an WebAPI which references Services layer (class library) that handles all the logic. If you inject IHTTPClientFactory to the WebAPI all is fine, but how do you pass the HTTPClientFactory to the service layer so one is able to do calls from there? A class library doesn't know about IHTTPClientFactories and such.

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +2

      It is a NuGet package to add the ability to use IHTTPClientFactory.

  • @pedrormiguel125
    @pedrormiguel125 4 года назад

    Excellent Content

  • @stefanzhuntovski9165
    @stefanzhuntovski9165 3 года назад

    Thanks Tim!

  • @radeksendecki9922
    @radeksendecki9922 2 года назад

    Great tutorial!

  • @russellkemmit73
    @russellkemmit73 3 года назад +1

    I think for learning sake, a POST example would have worked great here.

    • @IAmTimCorey
      @IAmTimCorey  3 года назад +1

      Thanks for the suggestion.

  • @easterdays4208
    @easterdays4208 4 года назад +2

    In this case I'm using third party library like restsharp. Btw thanks for sharing

  • @stewarthyde5111
    @stewarthyde5111 4 года назад

    Tim, A lot of things have change with Webasembly especially in this area. I pretty sure this can be done ASP.Core Host server, it much more different related to HtmlClient. I want this work in something I am working - my quests it probably related to client is not actually a core project. When you research Webassembly, please research HtmlClient example here and with that project. One big difference there is no startup.cs

    • @stewarthyde5111
      @stewarthyde5111 4 года назад

      Base on Microsoft docs - I try the following replacement in program.cs
      string uri = "www.metaweather.com/api/";
      var builder = WebAssemblyHostBuilder.CreateDefault(args);
      builder.RootComponents.Add("app");
      builder.Services.AddTransient(sp => new HttpClient { BaseAddress = new Uri(builder.HostEnvironment.BaseAddress) });
      builder.Services.AddHttpClient("ServerAPI",
      client => client.BaseAddress = new Uri(uri))
      .AddHttpMessageHandler();
      builder.Services.AddTransient(sp => sp.GetRequiredService()
      .CreateClient("ServerAPI"));
      await builder.Build().RunAsync();

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      I will be showing how to do this in Blazor WebAssembly shortly.

  • @H8orSk8
    @H8orSk8 4 года назад +1

    Would it be better in terms of clean architecture to have a separate service class that calls the api? or its it better off in the blazor component file itself

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      Yes, if the app has any size at all, you should move the API calls out into the data access layer.

    • @H8orSk8
      @H8orSk8 4 года назад

      @@IAmTimCorey Thank you for the advice, always watching your videos and your great content!

  • @upcsatx
    @upcsatx 4 года назад

    Thanks for posting!

  • @sunilgv4750
    @sunilgv4750 3 года назад +1

    Wove great. Can you please create a training session on creating a api gateway in .net core?

    • @IAmTimCorey
      @IAmTimCorey  3 года назад +1

      I will add it to the list. Thanks for the suggestion.

  • @crnisrb
    @crnisrb 4 года назад +1

    Thanks Tim. I wonder how would you overcome that underscore issue in a layered architecture where your DTO or a model would be a part of domain/core and api fetching service a part of Infrastructure layer? Since we can change weather api provider, there should be some mapping involved? Or am I looking at this from the wrong angle? I’d just prefer my models and DTOs to remain POCO.

    • @IAmTimCorey
      @IAmTimCorey  4 года назад

      I am not sure I see the issue. If your DTO needs to change based upon a higher layer, you would do a mapping to a new model. Does that answer your question?

    • @crnisrb
      @crnisrb 4 года назад

      @@IAmTimCorey Yeah, that's what I figured. What I wanted to ask, for an example in EF, you could decorate your entities, but if you prefer not to, you can specify decoration equivalents in the configuration. That way you can map things outside of the entities and have them remain completely oblivious of EF. IF you then switch to a different ORM, you just (hopefully) write new configuration specific to that ORM. Is there any way to do something similar with JSON deserialization using System.Net.Http.Json ? Hope this clears it up. Thanks, Tim.

  • @paulrosemberg3763
    @paulrosemberg3763 4 года назад

    Great tutorial. How should I call the uri if I want to pass parameters? Should I add curly brackets after the uri with the dynamic parameters I need to pass?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад

      It depends on what you mean. For the GET call, we are passing a parameter (the location ID). You just pass that as part of the string. If you are doing a POST command (or similar), you can pass the parameters separately in the call.

  • @facundopugliese9632
    @facundopugliese9632 3 года назад +1

    Thanks for the video, Tim. I would like to know how to configure the proxy server to consume the API through it. I'm getting Authentication error in the exception message ( Response status code does not indicate success: 407 (Proxy Authentication Required)). How do that with HttpClient?

    • @IAmTimCorey
      @IAmTimCorey  3 года назад +2

      I don't have a video on that but I'll add it to the suggestion list.

  • @kourosh234
    @kourosh234 2 года назад +1

    Very nice video thank you, I just wished you had gone further to post and bearer authentication

    • @IAmTimCorey
      @IAmTimCorey  2 года назад +1

      I do that in the TimCo Retail Manager course here on RUclips, if you are interested.

  • @S3Kglitches
    @S3Kglitches Год назад

    What strategy do you suggest for clients generated by NSwag which is default for scaffolding REST API Clients in NET Framework in Visual Studio? It accepts HttpClient as an argument. Do you suggest creating one such client everytime (short lived, such as DbContext with EF Core) and populating it with a HttpClient received from IHttpClientFactory?
    The problem is that the NSwag-generated client accepting HttpClient in constructor does not implement IDisposable. How to work with that?

  • @tomabbott9221
    @tomabbott9221 4 года назад +1

    Is there an elegant way of adding query string parameters to attach to the GET request, or is it best to build the full URL manually with something like stringbuilder?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      Probably the easiest is just appending the parameters. No need for even stringbuilder since you aren't doing it repetitively.

  • @galaxiegalaxie5003
    @galaxiegalaxie5003 4 года назад +1

    Thanks,could you also do the video about refit with dot net coreand blazor webassembly,best practises😁

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      I will add it to the list. Thanks for the suggestion.

  • @DanielEliasKana
    @DanielEliasKana 4 года назад

    Thanks for this!

  • @bassonette
    @bassonette 4 года назад +1

    Can you go over how to add basic authentication to the client ?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +2

      ruclips.net/video/9QU_y7-VsC8/видео.html - check this out

  • @telstar220
    @telstar220 4 года назад

    Awesome. Thanks for the video. Trying to find a proper way to use HttpClint for API call and here it is. Just wondering how come it has ""Loading" then "Table displayed" effect from that if else statement? Is that because the Async OnInitializedAsync method? what will be the experience if change it not to be Async?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      Yes, the page renders before the async call is made. It would not change that part of the experience if you made the call a blocking call.

  • @glenroyscott7285
    @glenroyscott7285 3 года назад

    Great tutorial Tim. However how do I add httpclientfactory in a caliburn micro wpf bootstrapper.? The simple container singleton does not allow for the implementation of the client factory.

  • @webtechdiary1107
    @webtechdiary1107 4 года назад

    Nice work sir

  • @MacLeigh
    @MacLeigh 4 года назад

    I have started following you recently and I really love how you explain things. Even something that I thought I knew I find something that I didn't know. Just one question regarding this video. I've tried to do same thing as you are doing here but I have problem with CORS and cannot get weather data. Is there something that I missed?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад

      Hmmm, I'm not sure. I chose the weather service because it didn't have CORS to deal with. Maybe they added it recently?

    • @MacLeigh
      @MacLeigh 4 года назад

      @@IAmTimCorey Yes, probably they added it. Just wanted to check if it was me missing something you've done. Thank you.

  • @manoharreddyn
    @manoharreddyn 4 года назад

    Thanks Tim.

  • @williameduardo7020
    @williameduardo7020 4 года назад

    Great video. I noticed that the model property was an array instead of a list. Any preference there?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      No, that's just the default from the paste as JSON. I prefer a List. In this case, it doesn't matter, though, since we won't be manipulating the set.

  • @jfkansas5508
    @jfkansas5508 4 года назад

    Got it to work, was annoyed by all the Celsius so converted all to F. It works in the model but wanting to refactor into a service.

    • @IAmTimCorey
      @IAmTimCorey  4 года назад

      Nice job taking it to the next level.

    • @jfkansas5508
      @jfkansas5508 4 года назад

      @@IAmTimCorey Thanks, I shot you an email a while back on possibly refactoring what I had done. I was just wondering if there was a better way to do it. Thinking also about referencing a service layer to do the conversion. But wasn't sure on that since blazor server in this project doesn't use controllers.

  • @Ristogod
    @Ristogod 4 года назад +1

    I noticed you didn't dispose the HttpRequestMessage or HttpResponseMessage. Was that intentional? Is there no benefit or drawback in doing so or not?

    • @IAmTimCorey
      @IAmTimCorey  4 года назад +1

      Correct. They get disposed of like any other object in C#.

    • @Ristogod
      @Ristogod 4 года назад

      @@IAmTimCorey Sure. But they implement IDisposable. So, just confused how a person knows when and when not to declare them with a using statement.

    • @brianpk7206
      @brianpk7206 2 года назад +1

      @@Ristogod Pretty sure you should be using a using statement. But hey I'm no professional

  • @pylvr8021
    @pylvr8021 3 года назад +1

    any ideas how can i mock the library to unit test my code ?

    • @IAmTimCorey
      @IAmTimCorey  3 года назад

      I recommend a couple of my videos for this - ruclips.net/video/DwbYxP-etMY/видео.html and ruclips.net/video/ub3P8c87cwk/видео.html

  • @albxdotcom
    @albxdotcom 4 года назад

    excellent video

  • @glennmayer3862
    @glennmayer3862 3 года назад

    Awesome!