gpt4 book ai didi

asp.net-web-api - 405 错误 {"Message":"The requested resource does not support http method ' GET'。"}

转载 作者:行者123 更新时间:2023-12-02 04:46:36 25 4
gpt4 key购买 nike

我在我的界面中使用以下代码并使用 webapi 服务。

[OperationContract]
[WebInvoke(Method = "GET")]
bool IsPaymentGatewayExitsForTenant(string tenantSlugName, string productCode);

我在本地运行并使用 rest 客户端测试服务

api/PaymentGatewayService/IsPaymentGatewayExitsForTenant?tenantSlugName=KPN&productCode=POSS

但我得到以下错误enter code here

{"Message":"The requested resource does not support http method 'GET'."} `enter code here`

如有任何帮助,我们将不胜感激。

最佳答案

你能不能用“HttpGet”属性装饰你的 Controller 类方法“IsPaymentGatewayExitsForTenant

[System.Web.Http.HttpGet]
bool IsPaymentGatewayExitsForTenant(string tenantSlugName, string productCode)
{
// your code goes here
}

希望这能行得通

关于asp.net-web-api - 405 错误 {"Message":"The requested resource does not support http method ' GET'。"},我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19674928/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com