Thank you for choosing NFC Helper! This page is dedicated to providing you with comprehensive support and guidance to ensure a smooth experience with our app. Whether you're new to NFC technology or an experienced user, we're here to assist you.
Q1: How do I write a URL to an NFC tag using NFC Helper?
Q2: What should I do if my device does not recognize an NFC tag?
Q3: How do I use custom URL schemes with NFC Helper?
nfchelper://write?url=<URL-to-write>&callback=<callback-URL>
. Simply enter this format in your browser or app to open NFC Helper directly to the writing page, more information below.Q4: Can NFC Helper work with any NFC tag?
nfchelper://write?url=example.com
will open the app and pre-fill the URL field with "example.com", more information below.Encounter an issue? Here are some common problems and their solutions:
For further assistance, questions, or feedback, please reach out to us at [email protected]. Your feedback is invaluable and helps us improve.
Stay updated with the latest features and enhancements in NFC Helper by checking this section regularly. We continuously work to improve your experience with new functionalities and improvements.
NFC Helper's URL scheme feature allows users to interact with the app using custom URLs. This enables direct navigation to specific functionalities within the app, primarily focused on writing to NFC tags and handling callback URLs.
The basic URL scheme format for NFC Helper is as follows:
nfchelper://<action>?<parameters>
<action>
: This specifies the action to be performed by the app.<parameters>
: These are optional and used to pass additional information required for the action.Writing to NFC Tag:
write
url
, callback
nfchelper://write?url=<URL-to-write>&callback=<callback-URL>
Reading NFC Tag:
read
callback
, post
, params
(Available in version 1.1)nfchelper://read
url
(URL): The URL you want to write to the NFC tag.callback
(URL): A URL that the app will open after successfully writing to the NFC tag. This URL will include the tag's serial number as a query parameter.post
(URL): The endpoint URL to which the app will send a POST request with the NFC tag data. (Available in version 1.1)params
(true/false): To include query parameters in read
callback url or not. Default is false. (Available in version 1.1)custom
(string): Custom parameter to include in POST api or callback params (Available in version 1.1.1)Open Writing Page Without Parameters:
nfchelper://write
Write Specific URL to NFC Tag:
nfchelper://write?url=https://example.com
https://example.com
.Write to NFC and Open Callback URL:
nfchelper://write?url=https://example.com&callback=https://example.com/callback
https://example.com
to an NFC tag. Upon successful writing, the app navigates to https://example.com/callback?tagid={serialnumber}
.To use NFC Helper's URL scheme:
For further question, please send the e-mail to [email protected]
Back to Home