Is it possible to make a PIN Authentication method with time interval?

I have two apps:
APP A - Main app with sensitive information
APP B - Security app to enter a pin.

My issue is, that I tried to stablish an app B view as a starting view for my app B but none of the deep links I put on the formula bar in app A got to work.

The only thing that worked was, opening the App A from app B.

The machanics of the app is the following
App A has an app B form as starting view via deeplink
so, when app A is started, opens app B form (not working)
app B form checks that the pin entered is from the right user (works fine)
if the pin entered is correct, app B opens app A (working fine)
if the pin is wrong, app B reopens the form (loop working fine)

What can I do to overcome this?
I alredy tried with LINKTOAPP, LINKTOVIEW and LINKTOFORM using just the app name, and app name + form name

Solved Solved
0 19 919
1 ACCEPTED SOLUTION

On your case, I suggest you place two conditions,

  1. Useremail() = [EmailField]
  2. [TimeStamp] >= (Now()-hour(1)) โ€” > Accept only that row was generated within last 1 hour

Place this to slice condition with AND()

Then let other condition, show and hide view, count the number of the slice which meet with this criteria.

If the number of rows being returned by this slice is > 0, then do something else do something else.

View solution in original post

19 REPLIES 19
Top Labels in this Space