Android:Paypal Preapproval API 操作(需要示例)
是否有 PayPal 预先批准 API 操作的工作示例?我浏览了一些教程。但他们正在为交易指定一些预先批准密钥。我们怎样才能得到这把钥匙呢?
Is there any working example for PayPal preapproval API operation. I went through some tutorials,. But they are specifying some preapproval key for the transaction. How will we get this key?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您谈论预批准 API 操作 那么预批准密钥是另一方返回的用于唯一标识交易的东西 - 例如,在他们的
Order
表中,他们可能有专门针对的uniqueidentifier PayPalPreapprovalKey = newguid()
字段此目的(如果Order
是交易实体)。这有意义吗?
if you talk about Preapproval API Operation then the preapproval key is something the OTHER party returns to uniquely identify the transaction - for example, in their
Order
table they might haveuniqueidentifier PayPalPreapprovalKey = newguid()
field specifically for this purpose (ifOrder
is the entity of the transactions).does it make sense?