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 do I customize NSOutlineView to have border color?
- UIWebView Screen Fitting Issue
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Image and Text locations in UIButton
- setting OpenGL version in objective-C
- Setup code for xibs in iOS. -awakFromNb:
- realm db, get parent link of object
- CFBundleDocumentType is not working in myproject-Info.plist file
- UIPopoverPresentationController not rendering properly
- Using Storyboard Reference
- Pass Data between two view controllers using 'Delegation' : Objective-C
- Unexpected CALayer Vertical Flipping on 3D Rotation 'Bounce'
- Setting View orientation to portrait is ignored
- UITextField append / between dates while enforcing character limit
Related Questions in IOS4
- Perform some action depending upon the text in the inbox of iPhone
- iOS 4.3 image for Verizon iPhone 4
- How We Detect and Save the text Which is Written on iPhone/iPad Touch Screen?
- How to place image from url to Imageview in iPhone
- Recognizing the Text Drawn By using Bezier Paths
- Mapkit drawing a circle
- iPhone Tree Data Structure
- Memory Leaks vs High Memory Allocations?
- change size of viewcontroller - iphone sdk
- How do I use different images, depending on iOS device type?
- To restart the app from the home screen and not from the screen we left at
- iPhone Alternate View for Landscape Mode on Rotation
- Iphone SDK streaming the movies
- Objective C - Naming Outlets and Actions via a Database
- Can we display KML data on Google maps using Mapkit framework on iOS devices?
Related Questions in IPHONE-SDK-4.0.1
- How to draw route in map in iphone
- Updating the iPhone iOS 4.0.1 to 4.0.2 SDK, Do I have to download the whole 2.5 Gigs?
- iphone UIDatePicker showing wrong date in Central Timezone
- How to set iPhone wallpaper and ringtone
- facebook integration problem in iPhone app
- AdWhirl integration problem in iPhone app
- Is Spiky Memory "Healthy" for App?
- iOS 4.0.1 "fast app switching" behavior in simulator vs device (iPhone 4)
- How to get card type information using unimag credit card reader
- How to retrieve data from a website into an iPhone app
- How to implement Page control in iPhone app?
- How to show some processing while some background task is going on?
- How to detect from an iPhone app whether the battery is in charging or not?
- ALAssetsLibraryChangedNotification notification
- How to resume iPhone app after a Phone Call
Related Questions in CREDIT-CARD-TRACK-DATA
- Decrypting DUKPT Encrypted Track Data
- Get Raw Magstripe Data with audio jack reader
- Tracking transaction data from credit card, any API?
- Formatting credit card track II data separator using Cobol
- Oversampling implementation using smote
- how to decrypt the track data using 3DES DUKPT
- Capture credit card information from card reader into an uneditable text field
- Java implementation of 3DES and DUKPT for decryption of credit card reader data through keyboard emulation?
- MAC variant of MSR DUKPT?
- Account Aggregators/API's - which provide credit card bill due-dates and allow for cross-party payments?
- ATM CVV1 + Service Code, POS Security Flaw?
- ruby/rails detect financial track data and return nil/empty string
- card io not scanning credit card in android
- How to get card type information using unimag credit card reader
- Should a dummy VISA Credit Card be accepted in QA environment?
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 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.