Quote:
Originally Posted by bobr
Lets take a look at examples of other processors that provide API services.
Here is an example of Stripe, exactly the same format, PLAIN TEXT
Code:
curl api.stripe.com/v1/charges \
-u sk_test_BQokikJOvBiI2HlWgH4olfQ2: \
-d amount=400 \
-d currency=usd \
-d "description=Charge for [email protected]" \
-d "source[object]=card" \
-d "source[number]=4242424242424242" \
-d "source[exp_month]=12" \
-d "source[exp_year]=2016" \
-d "source[cvc]=123"
And Bitpay, same format, PLAIN TEXT
Code:
curl bitpay.com/api/invoice \
-u ApiKey \
-d price=10.00 \
-d currency=USD
CoinsBill Data sanitation is done when the Data is posted via API.
|
Actually neither are true.
Both Bitpay and Stripe implement HTTPS so the data is encrypted during network traversal, unlike yours which is PLAIN TEXT.
Are you a complete idiot ?
Code:
curl https://api.stripe.com//v1/customers/cus_5ucsCmNxF3jsSY/subscriptions -u sk_test_BQokikJOvBiI2HlWgH4olfQ2:
Stripe uses SSL, you do not, how do you not understand the difference.
If anyone from GFY uses your service they are asking for trouble because it's obvious you have NO IDEA about what you are doing or security.