I'm attempting to write a component match where I only match on quesid=2109061920
Test url: xxxxx.org/MyChart/inside.asp?mode=questionnaire&from=list&src=sys&srcid=1&quesid=2109061920&empPIN=xxxxx%3D%3D&mobile=1
This somewhat works meaning it does filter only items with quesid but I can put anything after it like quesid=a2109061920... so it's not an exact match
{
"applinks": {
"apps": [],
"details": [
{
"appIDs": [ "xxx.com.xxx" ],
"components": [
{
"?": { "quesid": "2109061920" },
"comment": "testing"
}
]
}
]
}
}
This also didn't work:
{
"applinks": {
"apps": [],
"details": [
{
"appIDs": [ "xxx.com.xxx" ],
"components": [
{
"/": "/MyChart/*",
"?": "quesid=2109061920",
"comment": "testing"
}
]
}
]
}
}
Any ideas on what I'm missing?