-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
APDU transmit #578
Comments
There is not at the moment no, and not for at least the initial release. |
Hi there, An online shop has student discounts and needs a valid student verification.
Of course it will need to do many third party checks but it could be an useful feature as form of validation. I guess it could be done on a mobile application too but I think it would be less used. |
Yes, especially useful for smart cards that can produce digital signatures or encryption / decryption using hardware isolated keys. Web AuthN Lists NFC as a transport: https://www.w3.org/TR/webauthn/#transport This was my original reason for investigating NFC. I was able to work around the limitation by creating a "Kiosk Setup", where an NFC Reader is connected to a web server and the web server is connected to a website (with or without CORS). This also lets you use NFC from a desktop browser, which is very convenient for development. |
@kenchris @zolkis @beaufortfrancois I know this has already been asked and answered, but this feature would be complete game changer. There are a lot of NFC products out there that don't speak NDEF. If there is anything I, as a developer / W3C member can do to help get a lower level interface in please let me know. |
Agree, NDEF is in fact pretty useless these days. |
Yes, we did think about extending, and there are |
Given this work happens in the Web NFC Community Group, getting permission to contribute materially (proposing concrete spec changes, submitting PRs etc.) to the Web NFC API specification is even easier - just join the Community Group which is open and free to attend for all. @OR13 and @hmiguel, and others interested in helping move this or other features forward, please see the above link and click join. |
This will be highly valuable indeed. We are also looking to implement ECC capable smartcards in web applications. |
Thank you for your continued interest and support. We welcome further use cases in this issue on how this feature would be used by real-world web applications. Use cases can be contributed by anyone, even without joining the group. All feedback will be considered in planning future work for this API. Generally, use cases with a clear end user benefit will help raise feature priority. That guideline applies for this API as well. |
In Slovenia, we have now new biometric identity cards which support signing and authentication through NFC and APDU. It would be great if web apps could use them to authenticate and sign documents without having to have additional software installed. (Currently one has to install a mobile app which then more or less acts just as a NFC reader proxy app.) |
Doesn't mDoc use NFC? or does that only work on Apple devices? |
Hi, I would need this to "talk" to a german health card and for example read a medication plan. |
Hello, I'm testing with origin trial, and trying to reproduce this working node.js sample:
https://github.com/OR13/nfc.did.ai/blob/master/packages/tangem-sdk-node/src/APDU/readCard.ts
Note the
reader.transmit
... https://github.com/pokusew/nfc-pcsc#reading-and-writing-dataThis is needed for raw APDU communication: https://en.wikipedia.org/wiki/Smart_card_application_protocol_data_unit
I see here: https://web.dev/nfc/
"The current scope is limited to NFC Data Exchange Format (NDEF), a lightweight binary message format that works across different tag formats."
Is there any support for non-NDEF transmit?
The text was updated successfully, but these errors were encountered: