0:05 AM
mxbtty joined the channel
0:08 AM
jara joined the channel
0:12 AM
edgarjs has quit
0:20 AM
HairAndBeardGuy_ joined the channel
0:20 AM
Peder_ has quit
0:20 AM
nerdfiles has quit
0:23 AM
HairAndBeardGuy has quit
0:25 AM
nerdfiles joined the channel
0:28 AM
asteros joined the channel
0:41 AM
ffoeg joined the channel
0:46 AM
adefa joined the channel
0:47 AM
macbook joined the channel
0:47 AM
macbook has quit
0:48 AM
macbook joined the channel
0:50 AM
adefa has quit
0:50 AM
asteros joined the channel
0:51 AM
gladely joined the channel
0:54 AM
dynmeth joined the channel
0:54 AM
mikesea has quit
0:55 AM
zeonenzeonly joined the channel
0:57 AM
macbook has quit
1:03 AM
matin joined the channel
1:05 AM
dynmeth has quit
1:05 AM
dynmeth joined the channel
1:07 AM
briang__ has quit
1:10 AM
dixon has quit
1:13 AM
dynmeth has quit
1:17 AM
zeonenzeonly has quit
1:21 AM
s3shs joined the channel
1:25 AM
ffoeg is now known as ffoegaway
1:25 AM
ffoegaway has quit
1:25 AM
ginntonic has quit
1:26 AM
trenton42 joined the channel
1:26 AM
koopajah has quit
1:26 AM
bkrausz has quit
1:29 AM
asteros joined the channel
1:34 AM
smgoller has quit
1:34 AM
ryanflorence|afk has quit
1:34 AM
ryduh has quit
1:42 AM
nerdfiles has quit
1:43 AM
nerdfiles joined the channel
1:43 AM
cperciva_ has quit
1:45 AM
thaiat joined the channel
1:49 AM
dh__ joined the channel
1:49 AM
dh__ has quit
1:49 AM
deh joined the channel
1:49 AM
HairAndBeardGuy joined the channel
1:52 AM
nerdfiles joined the channel
1:53 AM
deh has quit
1:54 AM
mxbtty has quit
1:58 AM
nerdfiles has quit
1:59 AM
nerdfiles joined the channel
2:01 AM
dan_UFN joined the channel
2:02 AM
digitalmediaguy joined the channel
2:03 AM
dimethylsulfide has quit
2:03 AM
digitalmediaguy has left the channel
2:04 AM
dimethylsulfide joined the channel
2:05 AM
HairAndBeardGuy_ joined the channel
2:06 AM
matin has quit
2:06 AM
matin_ joined the channel
2:10 AM
jara has quit
2:12 AM
nemothekid joined the channel
2:18 AM
nerdfiles has quit
2:18 AM
nerdfiles joined the channel
2:36 AM
nerdfiles joined the channel
2:40 AM
TazDevil has quit
2:41 AM
nerdfiles joined the channel
2:42 AM
RBecker joined the channel
2:44 AM
nerdfiles has quit
2:46 AM
IanT750 joined the channel
2:46 AM
nerdfiles joined the channel
2:48 AM
nthj has quit
2:51 AM
jtmarmon has quit
2:54 AM
HairAndBeardGuy joined the channel
2:54 AM
harttho has quit
2:55 AM
mxbtty joined the channel
2:56 AM
TazDevil joined the channel
2:59 AM
mxbtty has quit
3:03 AM
IanT750 has quit
3:05 AM
HairAndBeardGuy_ joined the channel
3:07 AM
trenton42 has quit
3:07 AM
praboud has quit
3:08 AM
HairAndBeardGuy joined the channel
3:08 AM
hswolff joined the channel
3:09 AM
HairAndBeardGuy_ has quit
3:09 AM
mxbtty joined the channel
3:19 AM
dixon joined the channel
3:19 AM
macbook joined the channel
3:19 AM
hswolff joined the channel
3:21 AM
dynmeth joined the channel
3:24 AM
macbook has quit
3:28 AM
dynmeth has quit
3:33 AM
TazDevil has quit
3:35 AM
adefa joined the channel
3:40 AM
adefa has quit
3:41 AM
hswolff joined the channel
3:45 AM
dan_UFN has quit
3:46 AM
dan_UFN joined the channel
3:49 AM
joelataylor__ has quit
3:50 AM
dan_UFN has quit
3:52 AM
TazDevil joined the channel
3:59 AM
brandon272 joined the channel
4:04 AM
brandon272
I have an app that uses Stripe. I do not store any payment information locally and rely on the Stripe API to allow customers to access their billing history with us. Right now I provide customers with the ability to change their credit card but I want to provide them with the option of removing their credit card from their account entirely. According to the
4:04 AM
stripe docs the only way to accomplish that is to delete the customer entirely. By deleting the customer they would no longer be able to access their billing history (which I am looking up using their customer ID) ... Is there some other way to approach this aside from importing all of the data and storing it locally so that, should they remove their card
4:04 AM
information and I delete the customer object, they would still have access to the billing history?
4:04 AM
Sorry for the wall of text!
4:05 AM
markin
brandon272: why not just delete the card?
4:06 AM
brandon272
4:06 AM
Let me try it now.
4:07 AM
markin
4:13 AM
dixon has quit
4:14 AM
brandon272
markin: Yeah, worked just as I needed it to. Who knows why I thought that you couldn't! What does that FAQ entry mean?
4:15 AM
markin
I think it means that you cannot have a customer that has cards without one of those cards being set as the active card
4:15 AM
"If you'd like to keep the customer object in your Stripe account, then we don't currently offer a way to delete the active_card field."
4:17 AM
brandon272
ahh... ok
4:17 AM
Makes sense
4:17 AM
mxbtty has quit
4:22 AM
znn joined the channel
4:22 AM
znn
i have a concern about the security of using stripe.js in my phonegap app
4:22 AM
4:23 AM
mikesea joined the channel
4:23 AM
brandon272
What's the concern
4:23 AM
znn
Stripe.card.createToken({ number: card.pan, cvc: card.cvc, exp_month: card.expMonth, exp_year: card.expYear }, resHandler)
4:24 AM
i think i'm sending the user's cc info over an insecure connection
4:24 AM
i don't really know this though
4:25 AM
markin
znn: the connection to Stripe would be over an https connection
4:26 AM
znn
i just found out cordova does indeed support ssl
4:26 AM
4:26 AM
brandon272
It's just like using Stripe.js on a page being loaded over regular HTTP in a browser.
4:26 AM
The page itself is HTTP but the requests being sent to Stripe are over SSL
4:27 AM
znn
this is good news
4:27 AM
markin
normally you'd also want the page itself to be HTTPS to avoid any man in the middle attacks, but stripe's api only accepts stuff over HTTPS
4:27 AM
(I tend to avoid using the term SSL, becuase SSL isn't used anymore, its TLS)
4:27 AM
znn
now if i'm going to send the token and an email associating that token to my server, i suppose i should also use ssl on my end for security reasons
4:27 AM
oh
4:27 AM
thanks markin
4:28 AM
otherwise an attacker could charge away just with the token
4:28 AM
markin
the token is tied to your account
4:29 AM
you tend to want https because you don't want your customer's private data to be transmitted in plain text where anyone could easily grab it
4:37 AM
amit_ joined the channel
4:38 AM
znn has quit
4:42 AM
matin_ has quit
4:49 AM
TazDevil has quit
4:50 AM
joelataylor__ joined the channel
4:50 AM
TazDevil joined the channel
4:50 AM
jtmarmon joined the channel
4:54 AM
joelataylor__ has quit
5:04 AM
derferman joined the channel
5:05 AM
derferma_ joined the channel
5:13 AM
amit_
markin: how to verify my managed account? is it necessary to verify?