我在developer.paypal 上的appID 是什么
我想在 Android 上创建 PayPal 功能。我在developer.paypal.com 创建了一个测试沙箱帐户,
我想在我的编码中使用此函数:
PayPal pp = **PayPal.initWithAppID(this, "what should I write here",PayPal.ENV_SANDBOX);
我应该在第二个参数中写什么?我在项目中遇到这个错误:
身份验证失败,按钮未启用。
I want to create a PayPal functionality on android. I have created a test sandbox account at developer.paypal.com
I want to use this function in my coding:
PayPal pp = **PayPal.initWithAppID(this, "what should I write here",PayPal.ENV_SANDBOX);
What should I write in second argument? I have that error in project:
Authentication failed, button not enabled.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是上述问题的解决方案:-
Paypal pp = PayPal.initWithAppID(this, "APP-80W284485P519543T",PayPal.ENV_SANDBOX);
我通过一些 paypal 教程的帮助解决了这个问题。
感谢所有试图帮助我的人...
This is the solution for above question:-
Paypal pp = PayPal.initWithAppID(this, "APP-80W284485P519543T",PayPal.ENV_SANDBOX);
i resolved the problem by taking help from some paypal tutorial.
Thanks to all tried to help me...