PayPal.Forms
PayPal.Forms copied to clipboard
Transactions not able to see in Paypal merchant account
I was doing transaction using Paypal.forms plugin in xamarin forms.I was giving paypal sandbox merchant account id in android main activity.cs file.But i am not able to get transactions in paypal sandbox merchant account.
Please let me know i need to do any changes for configuration.
I have the same exact problem have you managed to move forward and fix it?
Hi I solved the issue by giving api key(not merchant id).
On Sun 2 Dec, 2018 9:00 pm Jose Ojeda <[email protected] wrote:
I have the same exact problem
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/AlejandroRuiz/PayPal.Forms/issues/67#issuecomment-443516231, or mute the thread https://github.com/notifications/unsubscribe-auth/AZCPmzP3YUNaP1vhGaETno7bjMXxo0NZks5u0_IxgaJpZM4Y0-6Y .
Where did you get the API key, in my account I can only see Paypal account, client id and secret, in this link there is a screenshot of my settings on PayPal website https://ibb.co/sWZQSx0
I mean client id you need to give for paypal configuration.
On Sun 2 Dec, 2018 10:31 pm Jose Ojeda <[email protected] wrote:
Where did you get the API key, in my account I can only see Paypal account, client id and secret, in this link there is a screenshot of my settings on PayPal website https://ibb.co/sWZQSx0
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/AlejandroRuiz/PayPal.Forms/issues/67#issuecomment-443522960, or mute the thread https://github.com/notifications/unsubscribe-auth/AZCPm2FQ7-TSZ0ahVElQ6ZHckQQzGzy8ks5u1AdtgaJpZM4Y0-6Y .
I used that client id for PayPal configuration and it works or at least it looks like, I never get the transaction in sandbox or production
It's because you are using PayPalEnvironment.NoNetwork
!
Do I put the Paypal secret in the app? If so, where do I put it? Basically, going from NoNetwork to Production, what do I have to do apart from changing the client ID to the Live Client ID and NoNetwork to Production?
I'm getting the same issue, my setup is like this:
PayPal.Forms.CrossPayPalManager.Init( new PayPalConfiguration(PayPalEnvironment.Production, "My_Live_Client_ID") { AcceptCreditCards = true, MerchantName = "MyApp", MerchantPrivacyPolicyUri = "https://www.privacypolicy.html", MerchantUserAgreementUri = "https://www.terms.html" }, this );
And that is it. I don't know where I can put in the secret or if that's not the problem, what could be.
Guys,
did you have a luck with this one? I cannot see any transactions in my sandbox business account as well. Please, share your experience with this one.
Guys,
did you have a luck with this one? I cannot see any transactions in my sandbox business account as well. Please, share your experience with this one.
Guys,
found my problem, the PayPalEnvironment.Sandbox should be selected for sandbox accounts, instead of NoNetwork.
Thank you