6个月前,我使用了Bluesnap。我编写了更新Bluesnap订阅量的方法。现在,我返回到开发bluesnap连接和面对错误“失踪翻译”时,我使用书面方法。我的方法通过url https://sandbox.bluesnap.com/services/2/subscriptions/:subscription-id
运行PUT请求和标头
Content-Type:application/xml
Authorization:Basic API_AUTH_KEY
和请求体
<?xml version="1.0"?>
<subscription xmlns="http://ws.plimus.com">
<override-recurring-charge>
<currency>ILS</currency>
<amount>55</amount>
</override-recurring-charge>
</subscription>
现在,成功的订阅,经常性的费用改变,我有一个错误
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<messages xmlns="http://ws.plimus.com">
<message>
<error-name>UPDATE_SUBSCRIPTION_FAILED</error-name>
<description>Missing Translation</description>
</message>
</messages>
有没有人想过如何解决更改订阅的经常性费用?
发布于 2017-03-08 21:48:51
订阅可能处于无法更新的状态。
让我知道你看到了什么!这个错误很奇怪,如果我是你,我会向Bluesnap报告的。
发布于 2017-03-10 13:11:54
您看到的版本是文档而不是API。如果您只想将Bluesnap用于支付,而不是用于管理产品/合同,则支付API是您的最佳选择。
我向您指出这个URL,它解释了与BlueSnap集成的各种选项:
https://support.bluesnap.com/docs/which-bluesnap-solution-do-i-need
https://stackoverflow.com/questions/42678057
复制相似问题