0

When integrating with a credit card processor (such as Stripe, Auth.net, etc...), there is usually a list of valid and invalid test credit card numbers that a developer can use while building a system to ensure it works before going live.

Is there a similar list somewhere for IMEI numbers?

Chris Traynor
  • 460
  • 1
  • 5
  • 14

1 Answers1

0

If you can't find a predetermined test list provided by a service provider then perhaps you can build your own test numbers list by using a random number generator against some valid known IMEI structure or perhaps reverse engineer the structure to check any input numbers are valid IMEI ones?

This link might help to understand the structure of IMEI numbers-

https://en.wikipedia.org/wiki/International_Mobile_Station_Equipment_Identity#Structure_of_the_IMEI_and_IMEISV_.28IMEI_Software_Version.29

Good luck!

Bob Ajob
  • 51
  • 1
  • 3