Does anyone know of an easy way to install the stripe library to your server?
forgotmynick joined the channel
mpen
@guest2913: which library? JS, PHP, Ruby...?
guest2913
php
InternetP joined the channel
mpen
composer require stripe/stripe-php
guest2913
And it's easy to install composer
mpen
Yes it is
guest2913
OK cool, I'm reading up on this and its just a little confusing, to install composer where do I put the files
frankdrey has quit
mpen
Depends what OS you're on. If you're on Windows, just use the installer
You really should figure out composer before you start accepting payments
guest2913
gotcha reading up on it now
snax joined the channel
ajph joined the channel
alexgordon has quit
stripe784 has quit
InternetP
Is the Checkout text changeable at all? I'd like to use it for a Subscription with a 14-day free trial, but "Pay $X" is a little bit incompatible with that.
I probably have to make my own form if I want subscriptions?
tr12
InternetP: there's a data-panel-label text you can configure
mattwc
mpen: you don't create a token from a stored card
mpen: you'd normally just charge the card directly instead of making a token
InternetP
tr12: Oh great, thanks!
tr12
np!
jacobw joined the channel
jacobw
Question about Checkout testing, is anyone available?
When I make a test payment on the website, shouldn't it show up on my Stripe dashboard?
Shilon has quit
mattwc
jacobw: it will assuming you also have the appropriate server-side code
Shilon joined the channel
Checkout just creates tokens, your server then needs to charge the token
jacobw
mattwc: the server charges the token through the php code provided in the documentation, right?
mattwc
yeah the php code that is like $charge = \Stripe\Charge::create..
CLG joined the channel
CLG has quit
jacobw
Okay, thank you
guest2913
The server side code you were talking about that also needs composer
mattwc
guest2913: composer is one method to install it but not required
Once you download the zip file for the stripe php I just install it on my server
mattwc
just download it, upload it and unzip it
and then do the require line
guest2913
And where do I put this "require_once('/path/to/stripe-php/init.php');"
mattwc
in your php code that calls out to stripe
guest2913
gotcha
kaylined joined the channel
kaylined
Mattwc: you around?
mattwc
yeah
Wang_ joined the channel
mpen
mattwc: Oh...just figured it out. Thanks
Wang_ is now known as Guest85439
Guest85439
If i want to transfer money from connected account to my platfrom account. How do i do that?
mattwc
Guest85439: you can only reverse a transfer to a connected account
so if you like sent money to the wrong account you could reverse it
Darkrm joined the channel
Darkrm
Hello?
mattwc
hi Darkrm
Guest85439
Okay. So my usecase is I have a subscription on connected account which takes 2% from customer subscribing to plan. And i want to take 5% from the connected account how do i do that?
mattwc
Guest85439: so you want to take 7%?
Darkrm
Does stripe support card present transactions such as emv? And also apple/android pay?
Guest85439
Yeah but from different ppl
1: credit card providing user pays 2%
2: service providing user pays 5%
mattwc
Darkrm: emv is supported through third parties like cardflight, I don't believe that apple / android pay are supported in the card present context
Guest85439: but its the same thing, you'd just charge a 7% application fee
Guest85439
But if a do a application fee of 7% its charged to Customer and not the connected account user
i want to take money from connected account user
mattwc
Guest85439: application fees are not charged to the customer
the customer is only charged the amount you specify as the amount, the application fee is subtracted from that
Darkrm
Can stripe procces apple/android pay if the phone is touched to a nfc capable reader that then sends the info to a server which in turn sends that to stripe
guest2913 has quit
mattwc
Darkrm: I don't think Stripe supports that, but you'd want to email support. All the card present emv stuff you'd normally go through a third party like cardflight or one listed at https://stripe.com/works-with/categories/card-r...
Darkrm
But with the third party emv you have to go through there api and lose all the stripe stuff.
frankdrey joined the channel
Gsham has quit
Another question though does stripe support batching and tip adjusting?
mattwc
so cardflight will create the card in your stripe account and then you can just do what you want
there isn't batching, and to my knowledge no tip adjustment
Darkrm
Crap... Well there goes stripe... As a POS payments canidate. Pitty it could be very cool. Stripes api and connect api would have worked great.
Gsham joined the channel
mattwc
yeah its really meant for an ecommerce set up
Darkrm
Any idea if that's something stripe will pursue?
mattwc
I suppose its possible though no public timelines, probably something you'd want to email support about