Asset - Extension Card Scanner

zbox

Member
GMC Elder
Android Card Scanner

Marketplace: https://marketplace.yoyogames.com/assets/5176/card-scanner-cardio
Category:
Extensions
Price: $14.99 $9.99
Modules: Android

Description:
An easy way to scan user's Credit/Debit cards for purchases! Also provides a text input fallback for the users that do not have a camera.

Can scan the following information from the camera:
  • Credit Card Number
  • Expiration Date
Provides inputs for:
  • CVC/CCC
  • Postcode
  • Cardholder Name
The implementation is simple, one function call opens the scanner, and the information is collected asynchronously:
Code:
if (async_load[? "type"] == "card_info" && !async_load[? "cancelled"])
{
   //censor all but last 4 digits
   var stl = string_length(async_load[? "card_number"]);
   last4 = string_repeat("****", 3) + string_copy(async_load[? "card_number"], stl - 4, 4);

   cvc = async_load[? "cvv"]; 
   expiry_month = async_load[? "exp_month"];
   expiry_year = async_load[? "exp_year"]; 
}
This does not provide a system for payments, just the easy collection of payment information. A full server-based product payment system with Stripe/Paypal integration is available for purchase subject to negotiations. Please use the contact link on the purchase page for more information.

NOTE: You must comply with your appropriate jurisdictions laws about the storage and transmission of Credit Card/Sensitive information.

Extension supports Android only. Includes a usage demo.
 
Top