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
The Delete method is cased as 'Delete' instead of 'DELETE' which can cause a 501 not implemented with some servers (this happened with an akka http server (Scala, not .NET) in this case)
Known workarounds
Upper case the method name
let myApi = MyProviderApi(CustomizeHttpRequest = fun (req:System.Net.HttpWebRequest) ->
req.Method <- req.Method.ToUpper() // Due to issue with "Delete" method
req)
The text was updated successfully, but these errors were encountered:
Description
The Delete method is cased as 'Delete' instead of 'DELETE' which can cause a 501 not implemented with some servers (this happened with an akka http server (Scala, not .NET) in this case)
Known workarounds
Upper case the method name
The text was updated successfully, but these errors were encountered: