otherwise, give me the account id you get in `stripe_user_id` (acct_XXX) so that I can take a look on our end
adfaklsd1f joined the channel
rocco88 joined the channel
daveymanj
Hello awesome Stripe developers. I want to use the second method described here: https://stripe.com/docs/connect/payments-fees, where a charge is made on the platform’s account but the funds are received by a connected account specified by the destination parameter. However, I would like the destination account (not my account) to send a receipt. Is this possible?
timrosenblatt joined the channel
denisa
koopajah that file is my entire code - on the page it's literary a link with an img tag in it. and the result.html is an empty html file
koopajah
denisa: I'm not sure what you mean with the result is an html
jeffcarp_ joined the channel
MrSimonBennett_ joined the channel
users go to Stripe first and *then* go back to your PHP code where you retrieve the access token
try dumping *everything* and add echo *everywhere*
koopajah i found the problem :) now it works like a charm. thank you
koopajah
what was the problem OCC?
OOC
remysharp_ is now known as remysharp
chrisk_ is now known as chrisk
aweeks joined the channel
kies^ joined the channel
denisa
i have set up the wrong redirect url in the application. one letter typo
mattems has quit
thanks again and i am sorry for all this
koopajah
oh no worries, I'm glad you figured it out and I'll add this as a possible cause for that issue :)
kapowaz_ is now known as kapowaz
denisa has quit
malcom_ joined the channel
sebgie joined the channel
Tyler joined the channel
Tyler is now known as biscoe
pj3 joined the channel
jxf joined the channel
bcol joined the channel
rjclardy joined the channel
woodrow joined the channel
indirect joined the channel
abrody joined the channel
chalettu joined the channel
g105b has quit
arahael3 joined the channel
upgrayeddd joined the channel
snafuchs joined the channel
nz joined the channel
keybrdist joined the channel
arahael2 has quit
g105b joined the channel
sandstrom joined the channel
g105b has quit
tictacjoe has quit
g105b joined the channel
g105b has quit
brockhaywood joined the channel
biscoe has quit
g105b joined the channel
g105b has quit
tictacjoe joined the channel
g105b joined the channel
g105b has quit
g105b joined the channel
sandstrom has quit
g105b has quit
g105b joined the channel
matt05 joined the channel
g105b has quit
matt05
Hi all. If statement_descriptor is omitted from a new charge, the returned charge object has it as null. Will the resulting statement descriptor on CC statements be null or "STRIPE" or will it default to the Account's statement_descriptor property?
@koopajah, is that default you're referring to different from Account.statement_descriptor?
sandstrom joined the channel
g105b has quit
koopajah
matt05: I mean the one in your account settings in public info
Myrth has left the channel
pEYEd: usually it means your require_once is incorrect
pEYEd
koopajah: I've tried giving it the path of web root and full path, same error. The file exist.
g105b joined the channel
ta joined the channel
davecap joined the channel
matt05
@koopajah, I'm using managed accounts, I should have specified. These are all managed through the API, and afaik, there's no UI for statement descriptor on public accounts.
pEYEd
it finds the file, but not the class
kytrinyx_ joined the channel
kytrinyx_
I just logged into our production dashboard (which is currently live and accepting payments, and has been for several months). It is flipped to "test", with all the dollar amounts set to 0. The CEO of the company is seeing it as "live", with actual dollar amounts. Any idea what might be happening?
pEYEd: then it means you didn't download the correct version of our PHP library. Your code is for 1.18, not 2.2.0
kytrinyx_: that's just a view on the dashboard, it's saved in your browser locally I think you can safely switch it and go back to Live
kytrinyx_
Ok, thanks!
jgoldberg has quit
matt05
@koopajah, just to be clear, then: omitting statement_descriptor in a new Charge via the API will default to Account.statement_descriptor, despite the statement_descriptor on the returned charge object shown as null
koopajah
matt05: yes, as long as you charge directly on the connected account
funkster joined the channel
funkster
anyone know off have if my stripe.js/php checkout setup needs https for test api?
koopajah
funkster> not for test no
funkster
ok perfect, thanks koopajah.
matt05
@koopajah, that's right. Okay, so my follow-up is that statement_descriptor disallows < > " ' when sending explicitly with a new Charge object, but the Account.statement_descriptor property allows these characters. Will the disallowed characters be stripped automatically when generating CC statements from Account.statement_descriptor, or do I need
to update all my managed Accounts to remove these characters?
fionn_ joined the channel
koopajah
I think we strip on our end, but I always feel like it's better to always set exactly what you want so I would advise to update
matt05
I agree, just want to predict some behavior in the meantime. Thanks!