-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Payment By Card PayPal #174
Comments
It looks like a PayPal server error. Let's wait for help from PayPal people. |
👋 Hello @emartynov! So this SDK only occupies the Are you still seeing an issue after you remove it? |
@scannillo sorry that I jumped with the comment. From the topic starter message, it looks like he tried to use the kotlin SDK for the card payment. The 0.0.9 and 0.0.10 versions. @aaaaasunil please confirm. If so you probably do not need the Paypal android SDK at all. As well it might mess up your transitive dependencies. I would try to remove that from the project completely and see if it builds. |
@aaaaasunil any update on this? As @scannillo mentioned only |
Ma'am, Thank you for reply. And update this implementation group: 'com.paypal.android', name: 'card-payments', version: '0.0.9' to implementation group: 'com.paypal.android', name: 'card-payments', version: '0.0.10' This is working fine on SANDBOX environment. But in LIVE environment it is give me "code":500,"correlationId":"801c380714d51","errorDescription":"An internal server error has occurred. -\u003e [Issue: INTERNAL_SERVICE_ERROR.\nError description It is working fine in both environment . But from last 2 weeks i am facing this issue in live environment. |
Thank you for reply, |
@scannillo
onApproveOrderFailure: Error: 400 - Description: Request is not well-formed, syntactically incorrect, or violates schema. -> [Issue: INVALID_PARAMETER_SYNTAX. Same data I checked in ios app there it's working in andorid I am getting this issue. Can anyone help me how I can fix this |
PayPal Android SDK Version
2.16.0
Environment
Live
Android Version & Device
No response
PayPal dependencies
I Upade it to:
implementation group: 'com.paypal.android', name: 'card-payments', version: '0.0.10'
But same error occurred..
Error Message :
onApproveOrderFailure {"code":500,"correlationID":"33184faca65b5","errorDescription":"An internal server error has occurred. -\u003e [Issue: INTERNAL_SERVICE_ERROR.\nError description: An internal service error has occurred.]","detailMessage":"Error: 500 - Description: An internal server error has occurred. -\u003e [Issue: INTERNAL_SERVICE_ERROR.\nError description: An internal service error has occurred.]","stackTrace":[],"suppressedExceptions":[]}
Describe the bug
I implemented the custom card UI for payment by paypal.
It working fine but from last week it is not working in LIVE Environment.
My Code is -
CardRequest cardRequest = new CardRequest(
payPalOrderID,
new com.paypal.android.cardpayments.Card(
etCardNumberAddCardPayPal.getText().toString(),
addCardExpirationMonth,
addCardExpirationYear,
etCvvAddCardPayPal.getText().toString(),
etNameAddCardPayPal.getText().toString(),
null
),
returnUrl,
SCA.SCA_ALWAYS // default value is SCA_WHEN_REQUIRED
);
To reproduce
Implemented the according to this git hub link.
Expected behavior
Pls suggest me where i am worng.
Screenshots
No response
The text was updated successfully, but these errors were encountered: