[Date Prev][Date Next][Thread Prev][Thread Next][Minivend by date
][Minivend by thread
]
Re: RealTime online credit card verification
Hi,
Sorry, I was not clear enough about my problem.
What I need is:
minivend will save consumers info such as credit card
number, expiry date, card holder's name, the amount of
money to be charged. Basically, I need to pass all of
these variables to my cgi script. I don't know how to
find out all these variables names. Will something like
this work for me?(I am only guessing)
geturl ("http://__CHECKURL__?action=submit&creadit_card_number=$mv_ccnumber")
Also, once my own cgi script has verified the credit
card and charged the money on it, what should I tell
minivend so that it knows that this process has
completed successfully.
> You pass them in the http call to your cgi script after the question mark.
> In the example below the parameters are passed "action" and "ordernumber"
> but can be expanded with parameters like "order_total", "currency" or
> whatever. The response of your cgi-script is returned in the scratch
> variable "ok".
>
> geturl ("http://__CHECKURL__?action=checkorder&ordernumber=103101")
>
> I don't know how advanced your cgi script is, but I would recommend that you
> import it into minivend by means of a UserTag, a GlobalSub or as Sub. Then
> you don't have to bother so much about passing variables. You use the
> subroutine "geturl" to communicate with your payment facility.
Maybe this is the answer to my question above. I will have a
look at the docs again.
> If you want to pass variables to minivend by means of a hyperlink or a
> redirection: seach the archives for "Jason Korkin" and "[data session arg]"
> (somewhere this year).
I don't think this is what I want/need.
> Don't forget to check if your payment processing facility shows some
> similarities with the supported methods of minivend.
I don't really know, not even how to check it out.
But thanks a lot anyway.
Shao.