You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to send some Post request to the Url like http://foo.com/baz/
When using SendBuilder.AppendPath trailing slash is missing in result Url, which causes 405
Example:
var urlBuilder = new FluentRest.UrlBuilder("http://foo.com/");
urlBuilder.AppendPath("/baz/");
var url = urlBuilder.ToString();
Result http://foo.com/baz
The text was updated successfully, but these errors were encountered:
mrSkyven
changed the title
UrlBuilder cuts off trailing slash
[Bug] UrlBuilder cuts off trailing slash
Jun 20, 2024
Need to send some Post request to the Url like
http://foo.com/baz/
When using SendBuilder.AppendPath trailing slash is missing in result Url, which causes 405
Example:
Result
http://foo.com/baz
The text was updated successfully, but these errors were encountered: