我刚刚按照文档开始构建Webhook。我创建了一个示例Web api应用程序,并使用可从Internet访问的有效网址发布到IIS。
我在authorize.net沙箱帐户上创建了一个Webhook,并设置了URL。我可以从邮递员内部调用POST api方法。但是,当我尝试ping webhook时,出现如下错误:
{
"status": 500,
"reason": "PING_FAILED",
"message": "The ping operation failed with the status code 403",
"correlationId": "5d136ce8-406f-442e-9118-fdde36946d87",
"details": [
{
"message": "Error occured in connecting to the endpoint:http://staging4.dancecompgenie.com/api/Values/Post "
}
]
}
这是我服务器上的网址。
http://staging4.dancecompgenie.com/api/Values/Post
我能够在邮递员中成功调用此网址并获得结果。
感谢您能帮助我解决问题。