Re: LC and credit card processing

2013-02-25 Thread Andrew Kluthe
It does exactly that. I have the starts of a stripe library somewhere I think from a while back. I haven't done any payments with it, but it handles auth and what not. Stripe's primary API relies a lot on SSL for encryption en route, and has a pretty nice testing interface. You can test your app w

Re: LC and credit card processing

2013-02-25 Thread Richard Miller
All I want to do is capture the cc data as it comes off the card's stripe (as Colin says... converted into simple data through Rev), encrypt this data, then send it somewhere for processing and deposit into my account... with a result returned. I'd prefer avoiding any additional setup or coding

Re: LC and credit card processing

2013-02-25 Thread Andrew Kluthe
I do not believe so. It's not the best solution for everyone, but it was the most *painless* solution I have used. Andrew On Mon, Feb 25, 2013 at 4:51 PM, Magicgate Software - Skip Kimpel < s...@magicgate.com> wrote: > But can Stripe integrate with card swiping hardware and provide the > merchan

Re: LC and credit card processing

2013-02-25 Thread Jerry Jensen
On Feb 25, 2013, at 2:41 PM, Mark Talluto wrote: > On Feb 25, 2013, at 1:00 PM, Colin Holgate wrote: > >> Credit card swipers just act like a keyboard input. You would listen for the >> keys being pressed, build up the data, then when the return character comes >> in you process the text. >>

Re: LC and credit card processing

2013-02-25 Thread Richard Miller
I had put together a Rev/Authorize.net solution together a years ago. It worked fine, but took a fair bit of work to construct. I would need to set up a new authorize account and merchant processor, as well as SSL certificates. I know it can be done. I was just hoping there was a better (read:

Re: LC and credit card processing

2013-02-25 Thread Magicgate Software - Skip Kimpel
Richard I just checked and Stripe does not interface with any known hardware: https://stripe.com/us/help/faq#who-should-not-use-stripe Now, you can do as Colin says and just use the hardware swiper that you have as an input device, however, there is a difference in credit card rates from a "ca

Re: LC and credit card processing

2013-02-25 Thread Scott Rossi
This looks really cool, Andrew, thanks for sharing. Regards, Scott Rossi Creative Director Tactile Media, UX Design On 2/25/13 2:48 PM, "Andrew Kluthe" wrote: >That's the benefit of using Stripe in this situation. Stripe takes the >place of a traditional gateway/processor/merchant account s

Re: LC and credit card processing

2013-02-25 Thread Magicgate Software - Skip Kimpel
But can Stripe integrate with card swiping hardware and provide the merchant with the "card present" rate? SKIP On Mon, Feb 25, 2013 at 5:48 PM, Andrew Kluthe wrote: > That's the benefit of using Stripe in this situation. Stripe takes the > place of a traditional gateway/processor/merchant acc

Re: LC and credit card processing

2013-02-25 Thread Andrew Kluthe
That's the benefit of using Stripe in this situation. Stripe takes the place of a traditional gateway/processor/merchant account setup. >From their FAQ, Why is Stripe better than the other options I'm considering? > Glad you asked! Here are som

Re: LC and credit card processing

2013-02-25 Thread Magicgate Software - Skip Kimpel
I have always used Authorize.net and their backend gateway / API. SKIP On Mon, Feb 25, 2013 at 3:57 PM, Andrew Kluthe wrote: > I am quite fond of using Stripe for various payment systems. Their api > is accessible over HTTPS and I have used it in the past with revServer. > Although I have neve

Re: LC and credit card processing

2013-02-25 Thread Mark Talluto
On Feb 25, 2013, at 1:00 PM, Colin Holgate wrote: > Credit card swipers just act like a keyboard input. You would listen for the > keys being pressed, build up the data, then when the return character comes > in you process the text. > > > On Feb 25, 2013, at 3:40 PM, Richard Miller wrote: >

Re: LC and credit card processing

2013-02-25 Thread Richard Miller
I understand how card swiper's work. No issue there. It's the cc processing solution I need solutions for. Andrew... thanks for the Stripe suggestion. I'll look into it. Richard On 2/25/13 4:00 PM, Colin Holgate wrote: Credit card swipers just act like a keyboard input. You would listen f

Re: LC and credit card processing

2013-02-25 Thread Colin Holgate
Credit card swipers just act like a keyboard input. You would listen for the keys being pressed, build up the data, then when the return character comes in you process the text. On Feb 25, 2013, at 3:40 PM, Richard Miller wrote: > I need a way to process a swiped credit card through Rev. The

Re: LC and credit card processing

2013-02-25 Thread Andrew Kluthe
I am quite fond of using Stripe for various payment systems. Their api is accessible over HTTPS and I have used it in the past with revServer. Although I have never used it to process payments from inside a livecode application, I have made livecode applications that use their api to track sales. I

LC and credit card processing

2013-02-25 Thread Richard Miller
I haven't followed recent developments in this area, so I'm looking for suggestions. I need a way to process a swiped credit card through Rev. The user is interacting via a touch screen (no keyboard or mouse). Just need to process the card info... no address info. The card swipe unit is attac