好的,这是我的问题。我正在尝试为我正在构建的产品构建定期付款服务。我现在正在使用Authorize.Net来构建它。我下载了他们的源代码和API,并将其插入到我的代码后面。
以下是我的代码现在的样子:
try
{
// create the address
var address = new Address
{
Street = "123 4th Street",
City = "Awesome City",
State = "MD",
Zip = "12345",
Country = "US",
Company = "Doe's Company",
First = "John",
Last = "Doe",
ID = new Guid().ToString(),
Phone = "(123) 456-7890"
};
// create the request
SubscriptionRequest request =
SubscriptionRequest.CreateMonthly("john@doe.com", "Test Subscription", 10.00M)
.UsingCreditCard("John", "Doe", "4007000000027", 2020, 12)
.WithBillingAddress(address);
// create the gateway, sending in your credentials
var gate = new SubscriptionGateway(ConfigurationManager.AppSettings["apiloginid"], ConfigurationManager.AppSettings["transactionkey"], ServiceMode.Test);
// make some money
ISubscriptionRequest response = gate.CreateSubscription(request);
return Json(response.SubscriptionID);
}
catch (Exception ex)
{
return Json(ex.Message);
}
每当我打电话给我时,我都会收到错误消息:
错误处理请求:E00012 - 您已提交副本 订阅1983944.将不会创建重复订阅。
我查了一下,发现每当我想提交新订阅时,我都需要更新发票号码。使用SubscriptionRequest,我似乎无法做到这一点。
有谁知道如何使用此方法更新发票编号?
答案 0 :(得分:0)
我通过将源代码加载到项目中并手动更改代码以便每次都生成发票号来解决问题。
我希望他们会更新他们的API来做到这一点。