Is there an app which calls a definable URL when a NFC sticker is detected? I want to put different stickers on my desk and when I place my phone on one of the stickers a specific URL should be call:
If StickerA is detectd call https://www.myserver.com/?val=a
If StickerB is detectd call https://www.myserver.com/?val=b
If StickerC is detectd call https://www.myserver.com/?val=c
etc.
Is this possible with android without activating the phone and is there a an existing app for that task?
Detecting a sticker, and taking an action are two different things. When you detect a sticker, I think you can get the ID of the sticker, then, based on the ID, you would create an Action View Intent passing the URL and that would cause an external browser window to open with the URL you passed.