贝宝订阅问题

发布于 2024-10-31 11:08:37 字数 285 浏览 0 评论 0原文

我想知道这是什么意思:“每 24 天 10.00 美元”

我正在使用 PayPal 订阅付款,并且我希望 24 天获得 10 美元。如何使用 HTML 表单变量设置它?

我使用了以下代码:

<input type="hidden" value="D" name="t3">
<input type="hidden" value="24" name="p3">

我是否正确,或者我怎样才能实现上述目标(即仅 24 天获得 10 美元)

I want to know what does this means : " $10.00 USD for each 24 days "

I am using PayPal Subscription Payment, and I want to get $10 USD for 24 day. How can I set it using HTML Form Variables?

I have used the following code:

<input type="hidden" value="D" name="t3">
<input type="hidden" value="24" name="p3">

Am I correct, or how can I achieve the above mentioned thing (i.e., getting $10 USD for 24 days only)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

中性美 2024-11-07 11:08:37

a3-->常规认购价格;

t3--->持续时间的常规订阅单位。允许值:
D——几天; p3 的允许范围是 1 到 90
W——几周; p3 的允许范围是 1 到 52
M——几个月; p3 的允许范围是 1 到 24
Y——多年; p3 的允许范围是 1 到 5

p3--->订阅持续时间。为使用 t3 指定的持续时间单位指定一个在允许范围内的整数值。

请阅读以上内容并进行相应更改
<输入类型=“隐藏”值=“D”名称=“t3”>

a3-->Regular subscription price;

t3--->Regular subscription units of duration. Allowable values:
D – for days; allowable range for p3 is 1 to 90
W – for weeks; allowable range for p3 is 1 to 52
M – for months; allowable range for p3 is 1 to 24
Y – for years; allowable range for p3 is 1 to 5

p3--->Subscription duration. Specify an integer value in the allowable range for the units of duration that you specify with t3.

Please read the above and change accordingly
<input type="hidden" value="D" name="t3">

ㄟ。诗瑗 2024-11-07 11:08:37

您无法限制订阅的长度。

您可以使用以下方式每天收款。

<input type="hidden" name="p3" value="1" />
<input type="hidden" name="t3" value="D" />

这将使您每天收款,上一个答案中的代码将每 24 天收款一次。

您需要使用上述代码,然后使用 Paypal 的 API 取消订阅,或者手动取消。

You're not able to limit the length of a subscription.

You can take payments every day using the following

<input type="hidden" name="p3" value="1" />
<input type="hidden" name="t3" value="D" />

This would give you payments being taken every day, the code in the previous answer will take payment every 24 days.

You need to use the above code and either, using Paypal's API, cancel the subscription, OR cancel it manually.

独闯女儿国 2024-11-07 11:08:37

我找到了解决方案:

<input type="hidden" name="srt" value="24">
<input type="hidden" name="a3" value="10.00">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="D">

它的内容如下:

$10.00 USD for each day, for 24 installments

I found the solution:

<input type="hidden" name="srt" value="24">
<input type="hidden" name="a3" value="10.00">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="D">

and it will read as:

$10.00 USD for each day, for 24 installments
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文