is it possible to generate a preapproval key using paypal ios sdk ?
I tried with future payment but it doesn't seem to cover my case.
Otherwise do you know how to generate preapproval key using classic api with paypal mobile login (internet browser) ?
Thanks
Related
It might be duplication, but I haven't find out proper solution (whatever I am looking for).
I am an iOS developer, currently I have an requirement to integrate PayPal Payments Pro SDK in ios side.
I already have knowledge about PayPal Standard SDK and I did it also. But how can I integrate PayPal Payment Pro (Credit card/ Debit Card Payments) in iOS side without taking PHP help (Server API).
I already generated Credentials like:
API UserName
API Password
API Signature
I googled it a lot but I didn't find out proper solution regarding this question.
I donĀ“t think it exists. You have to use:
https://github.com/paypal/PayPal-iOS-SDK (Credit card/paypal payments).
We want to integrate Stripe Connect with iOS application to transfer amount from one person to person.
Let's say, I want to transfer $100 to my sister's account using Stripe Connect Standalone/Managed Account. And we also want to take business commission from sender which includes stripe commission also.
We have gone through Sharing Customers also but won't be able to find any solution for Stripe Connect with iOS SDK.
We have also checked iOS SDK.
Can anyone please guide us how to integrate Stripe Connect with iOS mobile app in above scenario?
How can we transfer payment to end customer?
Do we need to integrate through iOS SDK or web page?
Stripe's iOS and Android SDKs serve the same purpose in a mobile application as Checkout or Stripe.js do in a web application: they take payment information and produce a token in return.
Once the token has been created, it must then be sent to a backend server where it can be used in API requests sent with the secret key. You can't create charges or transfers directly from your mobile app -- that must be handled by an external server.
(Also, please note that there might be compliance issues with what you're trying to do. I recommend you reach out to Stripe's support to explain your usecase and make sure it's something that Stripe can support.)
You can easily integrate Stripe Connect with your iOS app check the following link
https://github.com/gurunglaxman0/StripeConnect-iOS
Once you connect your stripe user id with server you can create charges and application fee using Stripe Api's from backend
I am trying to use braintree to allow customer pay through a device other than mobile phone or browser. So I can't use braintree client javascript or mobile app sdk. I want to ask customer to input
their credit card in the device and save it to braintree vault. I can get credit_token and customer_id.
However to make a payment, latest braintree api need to use payment_method_nonce, which is suppose
to be generated by the web or mobile client SDK. In my case, I can't use the clien SDK. Does anyone
how to generate the payment_method_nonce required without using javascript or mobile sdk.
Asked braintree support and they said they don't support devices other than browser and mobile phone as
client.
I used old braintree api, which can use credit_token as payment_method_nonce to make payment. The downside is the credit_card_token is not one time use. Someone may reuse it if they get it.
I integrated the PayPal iOS library, but I noticed, that it is not I am not able to work with IPN. Is there a secure workaround or isn't it possible at all?
Dave from PayPal here.
The PayPal iOS SDK uses the new PayPal REST APIs to communicate with PayPal's servers. Unfortunately, these APIs do not currently work with IPN.
At some point in the future this situation will improve, but we don't yet have an estimated date.
We are migrating from MPL to Paypal Mobile iOS SDK and we have what you call classic app. We could not find the migration guide and are having following questions.
The new sdk needs client id. Is the client id same as API Key?
According to the guide
"You need two credentials:
clientId: Available on the PayPal developer site.
receiverEmail: Your PayPal account email address
These are used to identify you as the recipient of payments. Both are public credentials; there is no need to attempt to obscure them or keep them private.
Important The receiverEmail should match the account used to get your client_id and secret."
We are not a receiver. We only facilitate payments between our users. Also we don't have a secret key. How do we let our users pay to other users?
In our app, user can pay their peers and also service providers. How do we make the distinction?
Your help is really appreciated!
Josh from PayPal here.
The PayPal iOS SDK does not currently have support for peer to peer payments.
The client_id is not the same as an API Key. You can get one from the PayPal developer website.
If you don't need support for direct credit card payments (sender has no PayPal account) you don't need the client_id. There is an option in the SDK to suppress direct credit card option. All you need to do is pass the payee's email address when initializing PaymentViewController. You can see the code snippet at https://developer.paypal.com/webapps/developer/docs/integration/mobile/ios-integration-guide/.