# Aadhaar Scanner

**URL:** https://community.thunkable.com/t/aadhaar-scanner/6013
**Category:** Promote your App
**Created:** [August 1, 2017, 4:20pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013 "2017-08-01T16:20:21Z")
**Posts on this page:** 15
**Page:** 1

<div class="post-metadata">

### Author: ![Ritabrata\_Maiti](https://avatars.discourse-cdn.com/v4/letter/r/d9b06d/32.png) [@Ritabrata\_Maiti](https://community.thunkable.com/u/Ritabrata_Maiti)
#### Post date: [August 1, 2017, 4:20pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/1 "2017-08-01T16:20:21Z")

</div>

> <https://play.google.com/store/apps/details?id=com.thunkable.android.ritabratamaiti.Aadhar_Scanner>
>
> The Aadhaar Scanner app scans the QR code on your Aadhaar Card and retrieves information from the QR code, including Aadhaar Card number, Name, Date of Birth, Gender and Address. After retrieving the information, it allows you to validate the Aadhaar Card, via the UIDAI Aadhaar UID verification web page. In case any help is required, instructions are available in the application itself, while validation instructions are sent via email...

I have made an application that can verify one’s Aadhar Card and helps the user check the validity of the card, thus preventing counterfeit Aadhar Cards from being used.

(Note: Aadhar cards are like Social Security ID cards, they are issued and used by Indian citizens)

---

<div class="post-metadata">

### Author: ![jerinjacob](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jerinjacob/32/5865_2.png) [@jerinjacob](https://community.thunkable.com/u/jerinjacob)
#### Post date: [August 1, 2017, 4:43pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/2 "2017-08-01T16:43:11Z")

</div>

It will be only useful for Indians.  
Also try something that’s useful for everyone.  
But it is good.  
Keep it up.

Jerin Jacob

---

<div class="post-metadata">

### Author: ![ILoveThunkable](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ilovethunkable/32/3134_2.png) [@ILoveThunkable](https://community.thunkable.com/u/ILoveThunkable)
#### Post date: [August 1, 2017, 5:02pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/3 "2017-08-01T17:02:52Z")

</div>

> [@jerinjacob](#):
>
> Try something that’s useful for everyone.

I don’t agree. Every single app is valuable & great. Maybe that can help a lot of Indians, so? Every single app drives Thunkable & makes it what is is.  
@Ritabrata_Maiti great work! 😉

---

<div class="post-metadata">

### Author: ![jerinjacob](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jerinjacob/32/5865_2.png) [@jerinjacob](https://community.thunkable.com/u/jerinjacob)
#### Post date: [August 1, 2017, 5:04pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/4 "2017-08-01T17:04:05Z")

</div>

The send validation can be done without opening mail.  
I will show you tomorrow or see **Taifun’s send mail by php**.

Jerin Jacob

---

<div class="post-metadata">

### Author: ![jerinjacob](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/jerinjacob/32/5865_2.png) [@jerinjacob](https://community.thunkable.com/u/jerinjacob)
#### Post date: [August 1, 2017, 5:05pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/5 "2017-08-01T17:05:50Z")

</div>

I agree to that I love thunkable.  
It is valuble.

---

<div class="post-metadata">

### Author: ![ILoveThunkable](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ilovethunkable/32/3134_2.png) [@ILoveThunkable](https://community.thunkable.com/u/ILoveThunkable)
#### Post date: [August 1, 2017, 5:11pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/6 "2017-08-01T17:11:24Z")

</div>

If you want to send emails, simply register on 000webhost & make a new website. Make a new file called **index.php** & now, copy following code & paste it in **index.php** file:

```
<?php
if (!isset($_GET['address']) && !isset($_GET['subject']) &&!isset($_GET['body'])) {
  exit("Error occurred.");
} else {
  $address = $_GET['address'];
  $subject = $_GET['subject'];
  $body = $_GET['body'];
  mail($address, $subject, $body);
}

```

Now, simply add **Web** component to your project, set Web.url to your webpage link with data. So for example to send a simple email with body of _Hello_ just set Web.url to [https://yourwebsitename.000webhostapp.com?address=test@test.test](https://yourwebsitename.000webhostapp.com?address=test@test.test)&subject=Subject&body=Hello & use Web.PostText(). That’s it!

* * *

P.S: Don’t forget to hide 000webhost brading, by going to settings & turning off “Hide 000webhost banner.”

---

<div class="post-metadata">

### Author: ![Ritabrata\_Maiti](https://avatars.discourse-cdn.com/v4/letter/r/d9b06d/32.png) [@Ritabrata\_Maiti](https://community.thunkable.com/u/Ritabrata_Maiti)
#### Post date: [August 1, 2017, 6:42pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/7 "2017-08-01T18:42:28Z")

</div>

Thanks for the email method, I will try integrating it tomorrow.

Good night everyone, or at for least everyone living on this side of the peninsula. 😉

---

<div class="post-metadata">

### Author: ![Taifun](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/taifun/32/1547_2.png) [@Taifun](https://community.thunkable.com/u/Taifun)
#### Post date: [August 1, 2017, 11:06pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/8 "2017-08-01T23:06:30Z")

</div>

> [@Ritabrata\_Maiti](#):
>
> Thanks for the email method, I will try integrating it tomorrow.

an overview of available methods see also here [Different eMail solutions for App Inventor](https://puravidaapps.com/sendmail.php)  
Taifun

---

<div class="post-metadata">

### Author: ![domhnallohanlon](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/domhnallohanlon/32/29554_2.png) [@domhnallohanlon](https://community.thunkable.com/u/domhnallohanlon)
#### Post date: [August 2, 2017, 12:21am UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/9 "2017-08-02T00:21:32Z")

</div>

> [@jerinjacob](#):
>
> try something that’s useful for everyone

Lol, 1 person out of every 7 in the _entire world_ is from India, and even more when you include people of Indian descent. 😂 (Although obviously not all of these are among the 1.2 Billion Aadhaar members!)

Nice work @Ritabrata_Maiti!

---

<div class="post-metadata">

### Author: ![mannankhanabdul](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/mannankhanabdul/32/532_2.png) [@mannankhanabdul](https://community.thunkable.com/u/mannankhanabdul)
#### Post date: [August 2, 2017, 6:21pm UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/10 "2017-08-02T18:21:05Z")

</div>

**Feedback Testing:**  
Does not recognize my Aadhaar Card. Not working!

---

<div class="post-metadata">

### Author: ![Ritabrata\_Maiti](https://avatars.discourse-cdn.com/v4/letter/r/d9b06d/32.png) [@Ritabrata\_Maiti](https://community.thunkable.com/u/Ritabrata_Maiti)
#### Post date: [August 3, 2017, 2:19am UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/11 "2017-08-03T02:19:43Z")

</div>

Hi, could you scan your adhaar card in a normal scanner and send me the xml text, thanks!

---

<div class="post-metadata">

### Author: ![Madan\_Mathod](https://avatars.discourse-cdn.com/v4/letter/m/4da419/32.png) [@Madan\_Mathod](https://community.thunkable.com/u/Madan_Mathod)
#### Post date: [August 4, 2017, 4:08am UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/12 "2017-08-04T04:08:25Z")

</div>

Hi @Ritabrata_Maiti,

Take a look at this news article published by Times Of India newspaper.

> **[IITian arrested in Bengaluru for stealing Aadhaar data | Bengaluru News -...](https://timesofindia.indiatimes.com/city/bengaluru/ex-iitian-arrested-for-stealing-aadhaar-data/articleshow/59907767.cms)**
>
> ​Bengaluru police on Thursday arrested a software engineer for hacking the server of UIDAI. The 31-year-old IIT-Kharagpur graduate is currently employ

Also link to validate aadhaar([http://simizer.com](http://simizer.com)), provided by you via email as Instructions to validate aadhaar, which is too blocked by Government of India.

 ![](https://us1.discourse-cdn.com/flex015/uploads/thunkable/original/2X/7/78cb2756b1650b759069d059fe0d05f6a6a61f50.png)

Check whether your app violates any of the prevailing Indian Law.

---

<div class="post-metadata">

### Author: ![Ritabrata\_Maiti](https://avatars.discourse-cdn.com/v4/letter/r/d9b06d/32.png) [@Ritabrata\_Maiti](https://community.thunkable.com/u/Ritabrata_Maiti)
#### Post date: [August 4, 2017, 4:30am UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/13 "2017-08-04T04:30:25Z")

</div>

Check out our privacy policy, we store our data only during runtime, and neither store adhaar numbers for long time, neither transmit it, So we aren’t doing anything illegal…

---

<div class="post-metadata">

### Author: ![ramanac62](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ramanac62/32/68938_2.png) [@ramanac62](https://community.thunkable.com/u/ramanac62)
#### Post date: [May 16, 2020, 1:38am UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/14 "2020-05-16T01:38:49Z")

</div>

Excellent Work! Keep up the good work!

---

<div class="post-metadata">

### Author: ![ioannis](https://sea1.discourse-cdn.com/flex015/user_avatar/community.thunkable.com/ioannis/32/146956_2.png) [@ioannis](https://community.thunkable.com/u/ioannis)
#### Post date: [November 8, 2024, 11:26am UTC](https://community.thunkable.com/t/aadhaar-scanner/6013/15 "2024-11-08T11:26:45Z")

</div>


