I have an app, lets say a note taking app.
In appgyver, I have the response in a repeating list component.
And in my backend email system it basically sends the same list from the user’s database (firebase) through to their email.
Now I am trying to connect the two.
I want to be able to create a link/url in the emails that links and opens up my application to that specific repeating list item.
How do I do this?
Whenever I try to pass a page parameter to the app - it just gets truncated, and I can’t seem to access the url parameters from any page.
This is how I would like it to function:
Eg www.myappgyverapp.com?myNoteId=1234
Then on App loading - if myNoteId, save 1234 to ‘currentViewItemReference’
and
‘navigateTo View Page’ where it would look at the currentViewItemReference and retrieve the appropriate object.
Any ideas?