市场帐户删除端点验证失败。单击此处了解有关设置端点的更多信息。
我创建了一个 API 方法来响应对 eBay 的质询响应。但是验证失败我不确定我在这里做错了什么。
下面是我添加的代码逻辑。
public ActionResult<string> ChallengeResponse([FromQuery] string challenge_code)
{
try
{
string verificationToken = _configuration["eBayVerificationToken"];
string endpoint = _configuration["eBayNotificationEndPoint"];
string challengeResponse = string.Empty;
IncrementalHash sha256 = IncrementalHash.CreateHash(HashAlgorithmName.SHA256);
sha256.AppendData(Encoding.UTF8.GetBytes(challenge_code));
sha256.AppendData(Encoding.UTF8.GetBytes(verificationToken));
sha256.AppendData(Encoding.UTF8.GetBytes(endpoint));
byte[] bytes = sha256.GetHashAndReset();
challengeResponse = BitConverter.ToString(bytes).Replace("-", string.Empty).ToLower();
JObject json = JObject.Parse("{\"challengeResponse\":\"" + challengeResponse + "\"}");
return JsonConvert.SerializeObject(json);
}
catch (Exception ex)
{
return string.Empty;
}
}