我在我的界面中使用以下代码并使用 webapi 服务。
[OperationContract]
[WebInvoke(Method = "GET")]
bool IsPaymentGatewayExitsForTenant(string tenantSlugName, string productCode);
我在本地运行并使用休息客户端测试服务
api/PaymentGatewayService/IsPaymentGatewayExitsForTenant?tenantSlugName=KPN&productCode=POSS
但我收到以下错误enter code here
{"Message":"The requested resource does not support http method 'GET'."} `enter code here`
任何帮助都会受到欢迎。