• reverentgeek Profile Picture

    David Neal 🥓🥑 @reverentgeek

    a year ago

    What are folks doing these days to make REST API calls from dotnet/C#? Are you using something like RestSharp, the HttpClient + Newtonsoft JSON[.]NET, or something else?

    72 8 43 24K 28
  • 1kevgriff Profile Picture

    Kevin Griffin #shedquarters @1kevgriff

    a year ago

    @reverentgeek HttpClient is pretty much all you need. System.Text.Json also does an amazing job, not external dependency required.

    1 0 62 1K 0
  • markrendle Profile Picture

    Rendle Has Left The Dumpster Fire @markrendle

    a year ago

    @reverentgeek Just HttpClient.

    4 0 48 2K 0
  • ardalis Profile Picture

    @ardalis.com on BlueSky @ardalis

    a year ago

    @reverentgeek No need for Newtonsoft these days.

    2 0 35 1K 2
  • CFDevelop Profile Picture

    Christian Findlay @CFDevelop

    a year ago

    @reverentgeek This is mine, but even though this is the thinnest of the ones you mentioned, I'm still finding ways to use HttpClient that are safer and with less ceremony than RestClient .net Hope to put them in a library some day github.com/MelbourneDevel…

    0 0 3 470 1
  • evvillian Profile Picture

    Eric Williams @evvillian

    a year ago

    @reverentgeek HTTP client (factory) + system.text.json

    0 0 23 848 0
  • BowTiedCrocodil Profile Picture

    BowTiedCrocodile | Productivity, AI, Software @BowTiedCrocodil

    a year ago

    @reverentgeek no one should be using newtonsoft really at this point unless you have some legacy code it's STJ + httpclient all the way Httpclient also supported typed clients, which is super useful milanjovanovic.tech/blog/the-right…

    1 0 11 980 8
  • thomaslevesque Profile Picture

    Thomas Levesque @thomaslevesque

    a year ago

    @reverentgeek HttpClient + System.Text.Json (there are built-in methods so you don't need to serialize/deserialize manually).

    0 0 7 299 0
  • GioDalakishvili Profile Picture

    Giorgi Dalakishvili @GioDalakishvili

    a year ago

    @reverentgeek Refit

    0 0 6 142 0
  • rob_stemp Profile Picture

    Rob Stemp @rob_stemp

    a year ago

    @reverentgeek System.text.json, no need for external dependence on newtonsoft. Httpclient. And lately using kiota generated client with script to spin up webapi to get swagger json.

    0 0 3 487 0
  • Cheesebaron Profile Picture

    Tomasz @Cheesebaron

    a year ago

    @reverentgeek Refit + the built in System.Text.Json serializer support + HttpClientFactory + Microsoft.Extensions.Resilience

    1 0 3 227 0
  • CesarDemi81 Profile Picture

    César @CesarDemi81

    a year ago

    @reverentgeek Flurl.Http (flurl.dev) Extremely easy to use, very powerful just out-of-the-box.

    0 0 3 471 1
  • filipnavara Profile Picture

    Filip Navara 🇺🇦 (parody of myself) @filipnavara

    a year ago

    @reverentgeek Switched to Microsoft Kiota because it was one of the few options that was AOT compatible and uses System.Text.Json.

    0 0 3 228 0
  • RoninProgrammer Profile Picture

    Sacrin Niobe @RoninProgrammer

    a year ago

    @reverentgeek @FlurlHttp is very simple and great for what I need. They also updated it to use System.Text.Json (I think you can still use Newtonsoft though).

    0 0 3 242 1
  • MrKrashan Profile Picture

    Milosz Krajewski @MrKrashan

    a year ago

    @reverentgeek HttpClient for small for small interfaces, github.com/canton7/RestEa… for bigger or more complex interfaces.

    0 0 2 391 1
  • svenlauterbach Profile Picture

    Sven Lauterbach @svenlauterbach

    a year ago

    @reverentgeek flurl.dev

    0 0 2 104 1
  • lamobileit Profile Picture

    Jérôme Liger @lamobileit

    a year ago

    @reverentgeek More extended and resilient client (based on Refit) : github.com/Respawnsive/Ap…

    0 0 2 222 2
  • fortender Profile Picture

    Tim @fortender

    a year ago

    @reverentgeek Why would i use Newtonsoft JSON in 2024? If there's an OpenAPI specification i'd use a source generator such as NSwag with System.Text.Json and DI support. If there's no spec i'd go with Refit. It automagically generates the implementation to a given interface. Give it a try.

    0 0 2 124 0
  • carlcod_es Profile Picture

    Carl @carlcod_es

    a year ago

    @reverentgeek Restsharp || (HttpClient && (System.Text.Json || Newtonsoft.Json))

    0 0 2 142 0
  • kilroi Profile Picture

    Kilroi @kilroi

    a year ago

    @reverentgeek We used NSwag last time I was on a team doing this. I don't know if that was a bad choice or if it is out of date, but it worked just fine for us.

    0 0 2 219 0
  • MetaGunny Profile Picture

    MetaGunny @MetaGunny

    a year ago

    @reverentgeek Refit

    0 0 1 67 0
  • mrjavascript Profile Picture

    mike melusky @mrjavascript

    a year ago

    @reverentgeek HttpClient is what I use if a nuget package doesn’t exist which does the work itself

    0 0 1 225 0
  • brendonparker Profile Picture

    Brendon Parker @brendonparker

    a year ago

    @reverentgeek HttpClient with System.Text.Json

    0 0 1 85 0
  • perskute Profile Picture

    Per Skute @perskute

    a year ago

    @reverentgeek HttpClient + System.Text.json Mainly to prevent use of external dependencies which is pain when writing plugins for Dataverse.

    0 0 1 276 0
  • DeveloperOgee Profile Picture

    OgeeDeveloper @DeveloperOgee

    a year ago

    @reverentgeek Mediatr

    0 0 1 691 0
  • joshve Profile Picture

    Josh van Eikeren @joshve

    a year ago

    @reverentgeek HttpClient + System.Text.Json

    0 0 1 83 0
  • shawty_ds Profile Picture

    Peter Shaw @shawty_ds

    a year ago

    @reverentgeek Minimal API's, no need for any 3rd party tools any more in modern .NET, it's all built into the box.

    0 0 1 75 0
  • sam_ferree Profile Picture

    Sam Ferree @sam_ferree

    a year ago

    @reverentgeek HttpClient

    0 0 1 111 0
  • AndrewJacksonZA Profile Picture

    Andrew Jackson @AndrewJacksonZA

    a year ago

    @reverentgeek Restsharp. Use case: corporate dev, data import via APIs from EXEs called during batch imports.

    1 0 1 296 0
  • iam_ijaz Profile Picture

    ijaz @iam_ijaz

    a year ago

    @reverentgeek HTTP client factory + .net built-in JSON class Best of both worlds 😁

    0 0 1 179 0
  • wdolek Profile Picture

    Zdeněk @wdolek

    a year ago

    @reverentgeek HttpClient (+ System.Text.Json)

    0 0 1 156 0
  • JS_Reek Profile Picture

    Jeff Reek @JS_Reek

    a year ago

    @reverentgeek Refit actually, it basically generates the implementation based on an interface

    0 0 1 48 0
  • everybody_kurts Profile Picture

    Kurt Mueller @everybody_kurts

    a year ago

    @reverentgeek fshttp

    0 0 1 19 0
  • nonlinear_james Profile Picture

    Non-Linear @nonlinear_james

    a year ago

    @reverentgeek Resharper

    0 0 0 33 0
  • rizaanjappie Profile Picture

    Rizaan Jappie @rizaanjappie

    a year ago

    @reverentgeek HttpClient.

    0 0 0 32 0
  • thearchitect452 Profile Picture

    Jason Penniman @thearchitect452

    a year ago

    @reverentgeek HttpClient + Polly. HttpClientFactory to instantiate. System.Text.Json under the hood via HttpClientExtensions.

    0 0 0 119 0
  • SourSkills Profile Picture

    Matt DeMuth @SourSkills

    a year ago

    @reverentgeek Refit

    0 0 0 33 0
  • Download Image
    • Privacy
    • Term and Conditions
    • About
    • Contact Us
    • TwStalker is not affiliated with X™. All Rights Reserved. 2024 instalker.org

    twitter web viewer x profile viewer bayigram.com instagram takipçi satın al instagram takipçi hilesi twitter takipçi satın al tiktok takipçi satın al tiktok beğeni satın al tiktok izlenme satın al beğeni satın al instagram beğeni satın al youtube abone satın al youtube izlenme satın al sosyalgram takipçi satın al instagram ücretsiz takipçi twitter takipçi satın al tiktok takipçi satın al tiktok beğeni satın al tiktok izlenme satın al beğeni satın al instagram beğeni satın al youtube abone satın al youtube izlenme satın al metin2 metin2 wiki metin2 ep metin2 dragon coins metin2 forum metin2 board popigram instagram takipçi satın al takipçi hilesi twitter takipçi satın al tiktok takipçi satın al tiktok beğeni satın al tiktok izlenme satın al beğeni satın al instagram beğeni satın al youtube abone satın al youtube izlenme satın al buyfans buy instagram followers buy instagram likes buy instagram views buy tiktok followers buy tiktok likes buy tiktok views buy twitter followers buy telegram members Buy Youtube Subscribers Buy Youtube Views Buy Youtube Likes forstalk postegro web postegro x profile viewer