Greetings,
I have built a simple PowerApp with a single button that calls some of the ReadNFC functions from the Microsoft examples online.
With( ReadNFC(), Notify( "Tag TNF: " & TNF & ", RTD: " & RTD ) )
With( ReadNFC(),
If( Not IsBlank( Text ),
Notify( "Read Text: " & Text ),
Not IsBlank( URI ),
Notify( "Read URI: " & URI ),
Notify( "Didn't read Text or URI" )
)
)
When I go to scan some of the NFC tags I have lying around, it either returns a message with no data or invalid payload error. If I use another NFC Android app that I have installed, it is able to return things like the tag ID etc. Just wondering if anyone has had experience in getting this working?