I want to integrate card swipe feature in my application using unimag card reader device provided by ID Tech. It provides name, account number and expiry date in a single string. But no information about the card type. Is there a way to retrieve the information about the "The type of Card" user hols. Like visa, master, etc.
How to get card type information using unimag credit card reader
1.7k Views Asked by Ayesha Fatima At
2
There are 2 best solutions below
0
jay
On
Card type is determine from first couple of digits
example code here http://cuinl.tripod.com/Tips/o-1.htm
a quick google for implementations :-)
Related Questions in OBJECTIVE-C
- How to control the volume of an iPhone programmatically in objective-c
- Occasional crash at NSURLSessionDataTask dataTaskWithRequest:completionHandler:
- How to set value the descriptor of iOS BLE in Objective-C?
- Unexpected #selector() Behavior in Swift-Objective-C Interop?
- In what context can we use an unqualified #selector() expression in Swift?
- AVPictureInPictureController crashes during initialization
- How to use pow() in Objective-C?
- How to change the image on the MGSwipeButton in MGSwipeTableCell
- Using sort descriptors in Outline View
- Why is my Swift function not printing from inside the dataTask closure?
- Using UICollectionViewCell with IBOutlet
- Undefined symbol: _OBJC_CLASS_$_ only on simulator
- Why can't I receive a notification sent from Camera Extension(Swift) to an observer application (obj-c++)
- Behavior of __block modifier in objc
- Inserting subview into view where I've added subviews and sublayers
Related Questions in IOS4
- both flutter build ios fails and xcode build fails with weird error
- How to change elements positioning in landscape mode?
- TableView ReparatorInset Width - Swift 4 Without Storyboard
- Receiving error when trying to dismiss picker
- in switch case i want to print nslog as per my requirement?
- how to send the dictionary data from one view controller to another view controller using segues?
- MFMailComposeViewController not working for me in old iOS code since iOS 9 runtime
- How to fix missing required architecture i386 in file?
- The main thread locked when fetching images from parse with semaphore
- Parse for iOS - Undefined symbols for architecture i386 - iPhone 4s, iPhone 5
- Xcode 6 duplicate symbols for architecture armv7
- Any issues in updating iOS 4 app to iOS 8?
- Integration of vine in iphone apps?
- ffmpeg is failing to convert mov files from iPhone 4
- Cannot View contents in ios 7 pickerview
Related Questions in IPHONE-SDK-4.0.1
- How to get card type information using unimag credit card reader
- facebook integration problem in iPhone app
- AdWhirl integration problem in iPhone app
- How to draw route in map in iphone
- Is Spiky Memory "Healthy" for App?
- ALAssetsLibraryChangedNotification notification
- How to detect from an iPhone app whether the battery is in charging or not?
- How to show some processing while some background task is going on?
- How to implement Page control in iPhone app?
- How to retrieve data from a website into an iPhone app
- How to resume iPhone app after a Phone Call
- How to set iPhone wallpaper and ringtone
- iphone UIDatePicker showing wrong date in Central Timezone
- Updating the iPhone iOS 4.0.1 to 4.0.2 SDK, Do I have to download the whole 2.5 Gigs?
- iOS 4.0.1 "fast app switching" behavior in simulator vs device (iPhone 4)
Related Questions in CREDIT-CARD-TRACK-DATA
- Oversampling implementation using smote
- Should a dummy VISA Credit Card be accepted in QA environment?
- ATM CVV1 + Service Code, POS Security Flaw?
- Can physical credit card reader identify first & last name?
- How to fetch BASE24 messages realtime in my application
- card io not scanning credit card in android
- ruby/rails detect financial track data and return nil/empty string
- MAC variant of MSR DUKPT?
- View credit card transactions
- How to getting started with magnetic stripe cards?
- Java implementation of 3DES and DUKPT for decryption of credit card reader data through keyboard emulation?
- Account Aggregators/API's - which provide credit card bill due-dates and allow for cross-party payments?
- Formatting credit card track II data separator using Cobol
- Tracking transaction data from credit card, any API?
- Dynamag USB card reader slow on keyboard mode in OSX
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The cliff notes version:
If card starts with:
3 - Amex (15 digits)
4 - Visa (13-19 digits, usually 16)
5 - Mastercard (16 digits)
6 - Discover (16 digits)
There are some other more rare card types like JCB and Diners which you might need to account for if your solution has to deal with those.