gpt4 book ai didi

.net-core - Stripe 帐单地址 C#/Dotnet 核心

转载 作者:行者123 更新时间:2023-12-02 20:26:12 24 4
gpt4 key购买 nike

快速启动并运行 Stripe,并设置我的表单以包含帐单地址。但是似乎找不到任何方法来使用 .net sdk 将其存储在 strip 中。
如果我转到 Stripe 仪表板,我可以手动输入客户的账单地址。

我的工作代码如下所示:

var stripeCustomerCreateOptions = new StripeCustomerCreateOptions
{
Email = value.StripeEmail,
SourceToken = value.StripeToken,
};

var stripeCustomerService = new StripeCustomerService();
StripeCustomer customer = stripeCustomerService.Create(stripeCustomerCreateOptions);

var stripeSubscriptionService = new StripeSubscriptionService();
var subscription = stripeSubscriptionService.Create(customer.Id, _stripePlanId);

我希望 StripeCustomerCreateOptions 上有一个选项可以包含账单信息。

我在表单发布请求中获取账单信息。

  • 编辑

深入研究之后。我可以看到信用卡有地址信息。但这不是我们想要的。
我希望收据上有账单地址。
我让它起作用的唯一方法是从仪表板手动更新客户。

最佳答案

对于版本 21.7.0这里传递的帐单地址更改如下代码

var options = new CustomerCreateOptions
{
Email = stripeEmail,
SourceToken = stripeToken,
Shipping = new ShippingOptions()
{
Name = LoginUser.FirstName + " " + LoginUser.LastName,
Phone = LoginUser.Mobile,
Address = new AddressOptions()
{
Line1 = LoginUser.Address,
PostalCode = LoginUser.ZipCode,
State = LoginUser.State,
City = LoginUser.City,
Country = LoginUser.Country
}
}
};

关于.net-core - Stripe 帐单地址 C#/Dotnet 核心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49853026/

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