I have implemented deep linking in my app. My app is opening using added links but unable to get query params from one link
here is the code of my deep linking config
const linking = {
prefixes: ['demo://'],
config: {
screens: {
Signup: {
path: 'SignUp',
},
SignupInvitation: {
path: 'user/invite/invite_code/:invitecode',
parse: {
invitecode: (invitecode: string) => {
console.log('Code ', invitecode);
storeToken(invitecode);
return `${invitecode}`;
},
},
},
ResetPassword: {
path: 'reset_password',
},
},
},
};
here is the complete link:
https://myapp.com/reset_password?access-token=abcdw&client=abcdef&client_id=abcdef&config=default&expiry=1646292840&reset_password=true&token=abcd&uid=abc@gmail.com
I want to get access-token, client, and uid from this link. how can I get it?