Here are some possible use cases:
An example of use is provided below:
var hello = new NDEFRecordText("hello world", "en-US", "UTF-8"); navigator.nfc.ontagfound = function(e) { window.console.log('NFC Tag found!'); var tag = e.tag; tag.writeNDEF(new NDEFMessage([hello])); } navigator.nfc.startPoll().catch( function(e) { window.console.error(e); });
This specification defines conformance criteria that apply to a single product: the user agent that implements the interfaces that it contains.
Implementations that use ECMAScript to implement the APIs defined in this specification MUST implement them in a manner consistent with the ECMAScript Bindings defined in the Web IDL specification [[!WEBIDL]], as this specification uses that specification and terminology.
The
EventHandler
interface represents a callback used for event
handlers as defined in [[!HTML5]].
The concepts queue a task and fire a simple event are defined in [[!HTML5]].
The terms event handler and event handler event types are defined in [[!HTML5]].
The Event
interface and the
Promise
interface as well as the concept of a
resolver
are defined in [[!DOM4]].
A NFC tag is a passive, unpowered NFC device. The NFC tag is powered by magnetic induction when an active NFC device is in close vicinity. A NFC tag contains a single NDEF message.
A NDEF message encapsulates one or more application-defined NDEF records. NDEF stands for NFC Forum Data Exchange Format, a lightweight binary message format. NDEF messages can be stored on a NFC tag or exchanged between NFC-enabled devices.
A NDEF record has a maximum payload of 2^32-1 bytes. The record also contains information about the payload size, type, and an optional identifier.
Navigator
objectThe NFCManager interface is exposed on [[!HTML]]'s
Navigator
object.
The NFCManager interface defines access to NFC functionality and offers methods to control local NFC behavior like polling for targets.
Promise
to notify
the caller that the NFC hardware is now polling. The resulting promise is
fulfilled even if the device was already polling, as state changes are tracked
with the onpollstart
and onpollstop
handlers.Promise
to notify the caller that the NFC hardware
stopped polling. This method may power off the NFC hardware, depending on
the underlying implementation.pollstart
event is dispatched.pollstop
event is dispatched.tagfound
event of type NFCTagEvent
MUST
be fired whenever a new NFCTag is detected by the NFC manager.
The tag
property of the event MUST contain the
corresponding NFCTag object.taglost
event is dispatched.peerfound
event of type NFCPeerEvent
MUST
be fired whenever a new NFCPeer is detected by the NFC manager.
The peer
property of the event MUST contain the
corresponding NFCPeer object.peerlost
event is dispatched.The following are the event handlers (and their corresponding event handler types) that MUST be supported as attributes by the NFC object.
event handler | event name | event type | short description |
---|---|---|---|
onpollstart |
pollstart |
simple event | fired when the polling state changes to
true |
onpollstop |
pollstop |
simple event | fired when the polling state changes to
false |
ontagfound |
tagfound |
NFCTagEvent with tag property set to
the new NFCTag object. |
detect a new NFCTag |
ontaglost |
taglost |
simple event | fired when the NFCTag detected by the
adaptor moves out of range. |
onpeerfound |
peerfound |
NFCPeerEvent with peer property set to
the new NFCPeer object. |
detect a new NFCPeer |
onpeerlost |
peerlost |
simple event | fired when the NFCPeer detected by the
adaptor moves out of range. |
Promise
that will notify the caller with the result of
the operation, which is a NDEFMessage.Promise
to notify the caller about the operation
success or failure.
Promise
to notify the caller about the operation
success or failure.
Promise
to notify the caller about
the operation success or failure.
"wifi"
or "bluetooth"
pairing.messageread
event of type NDEFMessageEvent
MUST
be fired whenever a new NDEFMessage is sent by the peer device.
The message
property of the event MUST contain the
corresponding NDEFMessage object.The following are the event handlers (and their corresponding event handler types) that MUST be supported as attributes by the NFCPeer object.
event handler | event name | event type | short description |
---|---|---|---|
onmessageread |
messageread |
NDEFMessageEvent with message property set to
the new NDEFMessage object. |
fired when a NDEFMessage is sent by the peer device.
|
A NDEFMessage contains one or more NDEFRecords.
NDEFRecord
objects part of
the NDEF message.Promise
to notify the caller with the result of
the operation, which is of type byte[]
i.e. a Javascript
Array of Number objects. Promise
to notify the caller with the result of
the operation, which is of type byte[]
i.e. a Javascript
Array of Number objects. Empty NDEF record with TNF 0x00. Record type and payload must be null.
Well-known record types are defined in the "NFC Record Type Definition (RTD) Specification", NFC Forum, 2006. All well-known records have TNF 0x01.
TNF 0x01, Record type "T", see "NFC Text RTD Specification", NFC Forum, 2006.
TNF 0x01, Record type "U", see "URI RTD Specification", NFC Forum, 2006.
var record = NDEFRecordURI("http://w3c.org"); // uri is stored payload as 0x03 + w3c.org console.log(record.uri); // prints http://w3c.org
TNF 0x01, Record type "Sp", see "Smart Poster RTD Specification", NFC Forum, 2006.
TODO: should we use the generic NDEFRecord for Handover records: "ac", "Hc", "Hr", "Hs" or create specific subclasses?
Media records have TNF 0x02 and use a MIME Type to describe the contents of the payload. The "NFC Data Exchange Format (NDEF)
Technical Specification", NFC Forum, 2006, specifies the MIME type should be in the format, as defined in [RFC 2046]. The mimeType in the constructor, is stored in type attribute of the NDEFRecord
. The payload may be constructed as a byte[] or DOMString.
var record = NDEFRecordMedia("application/json", '{"message" : "Hello, world"}');
Absolute URI records have TNF 0x03 and use a URI in the type field to describe the contents of the payload. The "NFC Data Exchange Format (NDEF) Technical Specification", NFC Forum, 2006, specifies the type should be an absolute-URI, as defined in [RFC 3986].
Note that the URI in an NDEFRecordAbsoluteURI
describes the payload. Users who want to store a URI in an NDEFRecord
should use NDEFRecordURI.
// Windows LaunchApp Record // [00] 00 01 0C 57 69 6E 64 6F 77 73 50 68 6F 6E 65 26 |...WindowsPhone&| // [10] 7B 66 35 38 37 34 32 35 32 2D 31 66 30 34 2D 34 |{f5874252-1f04-4| // [20] 63 33 66 2D 61 33 33 35 2D 34 66 61 33 62 37 62 |c3f-a335-4fa3b7b| // [30] 38 35 33 32 39 7D 00 01 20 |85329}.. | var payload = [ 0x00, 0x01, 0x0C, 0x57, 0x69, 0x6E, 0x64, 0x6F, 0x77, 0x73, 0x50, 0x68, 0x6F, 0x6E, 0x65, 0x26, 0x7B, 0x66, 0x35, 0x38, 0x37, 0x34, 0x32, 0x35, 0x32, 0x2D, 0x31, 0x66, 0x30, 0x34, 0x2D, 0x34, 0x63, 0x33, 0x66, 0x2D, 0x61, 0x33, 0x33, 0x35, 0x2D, 0x34, 0x66, 0x61, 0x33, 0x62, 0x37, 0x62, 0x38, 0x35, 0x33, 0x32, 0x39, 0x7D, 0x00, 0x01, 0x20 ] var record = new NDEFRecordAbsoluteURI("windows.com/LaunchApp", payload);
External type records allow custom name spaces to be defined. External records have TNF 0x04. The external type begins with the reverse domain name followed by a colon and the type. The external type should be passed to the constructor without the urn:nfc:ext:
prefix. The record type is defined in the "NFC Record Type Definition (RTD) Specification", NFC Forum, 2006, Section 2.2 NFC Forum External Type.
// Android Application Record AAR var record = new NDEFRecordExternal("android.com:pkg", "com.nxp.nfc.tagwriter");
When reading chunked content, implementations should combine TNF unchanged (0x06) records with the first chunk creating one logical NDEFRecord
. Refer to "NFC Data Exchange Format (NDEF) Technical Specification" NFC Forum, 2006, Section 2.3.3 Record Chunks for more information.
NFC Type Name Format (TNF) constants are defined in the "NFC Data Exchange Format (NDEF) Technical Specification". The TNF field describes the format of the data in the record type field. The attribute tnf
can have the following values:
The attribute action
can have the following values:
The attribute handoverType
can have the following values:
The editors would like to thank Jaehyun Park and Taehee Lee of Samsung for their work on the initial API design. We would also like to thank the members of the W3C SysApps group for their help on the API specification process, and the members of the W3C NFC group for their feedback on this API.