python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Refit API Client - Mix Body and Queryparameters in single object
When using the Refit REST Library to build a client targeting an asp.net based api is it possible to mix Query and Body items in a single Custom Object?
Example Asp.Net Route
[Route("documents/{i...
Grant Trevor
Votes: 0
Answers: 0
How to post a URL encoded dictionary within a strongly typed object from Refit
I am trying to replicate a URL Encoded Form Data request that contains a dictionary from Postman into Refit but I cannot get it (Refit) to produce the same encoded data. See the comparisons below and ...
Steve Wilford
Votes: 0
Answers: 0
Why is Refit with custom handlers converting my GET requests into POST requests? (405 Method Not Allowed)
I have a Xamarin app in which I am using Refit to call my ASP.NET Core Web API backend (.NET 6). On the iOS side of things, I use a custom System.Net.Http.HttpClientHandler to add the api key and bear...

NovaJoe
Votes: 0
Answers: 1
Refit REST library - Unable to post List<Guid> in Body
I'm unable to post List through refit. Here's the interface declaration:
[Post("/api/Url/{id}")]
[Headers("Content-Type:application/json")]
Task<Model> PostMethod([Body(BodyS...
Shahriar
Votes: 0
Answers: 0