Credit card payments for B4A & B4I

marcick

Well-Known Member
Licensed User
Longtime User
Hi guys,
I would like to integrate in my B4A and B4I apps a method to accept Credit Card Payments (no Paypal).
I'm not able to write wrappers, library etc.
Looks like Braintree is the way to follow but I have not the skills.
If anybody is interested to work on it, please let me know the conditions ....

It would be better the same person is able to do the b4A and B4I part too, same style, some use, some concepts. Also is mandatory not to violate roules that could block the AppStore publishing (uhm .... perhaps it is not possible ?)
 
Last edited:

Andrew (Digitwell)

Well-Known Member
Licensed User
Longtime User
Marcick,
Did you know that BrainTree is actually Paypal and you need a paypal account for it to work?

I started developing a class to use the braintree SDK, but in the end I just went back to using Paypal in a webview.

Edit: A paypal account is not mandatory, my mistake
 
Last edited:

denis choteau

New Member
Licensed User
you don't need a library or a wrapper to do this, just use a webview and webviewewxtras and a small javascript...
i am a beginner, and i did it with stripe in just 4 hours on android
i am using the payment request method in js : https://stripe.com/docs/stripe-js/elements/payment-request-button
stripe return the token, that i get with the webviewxtras via javascript
and i finish the payment using the returned token with a httpjob
the only tricky part was to use a " " ( space ) as paswword instead of "" for the httpjob
( to pass the stripe id as username )

it's looking as easy to do in B4i, and the style and use will be the same since it's a webview

i don't have any experience on the apple store.
 

marcick

Well-Known Member
Licensed User
Longtime User
Marcick,
Did you know that BrainTree is actually Paypal and you need a paypal account for it to work?

I was looking to Braintree because, if I’m not wrong, does not require a PayPal account for the buyer. Just credit card.

@Denis: thanks, I’ll have a look. But the point that I’m now realizing is: will AppStore or PlayStore reject the app publishing if they see I’m using external method to get money ?
 

Andrew (Digitwell)

Well-Known Member
Licensed User
Longtime User
I was looking to Braintree because, if I’m not wrong, does not require a PayPal account for the buyer. Just credit card.

@Denis: thanks, I’ll have a look. But the point that I’m now realizing is: will AppStore or PlayStore reject the app publishing if they see I’m using external method to get money ?

This is true for digital goods, it should be ok for physical goods.
 

Descartex

Well-Known Member
Licensed User
Longtime User
I'm about to sell something like a mobile phone credit recharge, Would it be considered like a "consumable" or digital goods ?
I think it should be considered as digital good
 
Top