英文:
PayPal REST SDK Deprecated
问题
我在我的Spring Boot应用中使用PayPal REST SDK实现了PayPal支付。现在我可以成功进行付款,但是当我尝试使用PayPal SDK实现退款时,PayPal文档会显示警告消息:“SDK已弃用,请使用PayPal直接API调用”。
PayPal文档 - https://developer.paypal.com/docs/api/quickstart/install/
有人可以告诉我,如果我继续使用PayPal SDK,将来会遇到问题吗?
英文:
I implemented Pay Pal in my spring boot app using pay pal rest SDK. Now I can do payments successfully but when I tried to implement refund using pay pal sdk the pay pal documents gives warning message "SDK is deprecated so use Pay pal direct API calls".
Pay Pal Document - https://developer.paypal.com/docs/api/quickstart/install/
Can any one tell me will I face problems in future if I use Pay pal SDK??
答案1
得分: 1
旧版的 v1/Payments SDK 已被弃用
你应该使用新版的 v2/Checkout SDK:https://developer.paypal.com/docs/api/rest-sdks/
英文:
The old v1/Payments SDKs are deprecated
You should use the new v2/Checkout SDKs instead: https://developer.paypal.com/docs/api/rest-sdks/
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论