Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NFC with JavaScript [closed]

is there any JavaScript NFC API? I would like to read tags from a WebApplication (without PhoneGap). Or is there any way to use the NFC from JavaScript through JAVA?

Best

like image 323
Dinkheller Avatar asked Mar 15 '12 23:03

Dinkheller


2 Answers

In the near future it could be possible to use NFC directly from the browser, check this out

Or, if you want more info about then you can check the Mozilla MDN Doc about this! Sounds interesting indeed

Based on this link, you can also check if you browser has support for NFC.

Interesting link about it: Web NFC Community Group report

like image 68
facundofarias Avatar answered Sep 28 '22 02:09

facundofarias


You can't read tags from webApplication. Browsers does not communicate with NFC resources (it bored me too!!) The unique way to implementing NFC features with Javascript through Android Browser is using a WebView or framework like phoneGap in a native app.

like image 38
gVibrac Avatar answered Sep 28 '22 01:09

gVibrac