I have configured the JSON file as well as the Xcode project. The file is publicly available, and I have omitted the appId and the rest of the JSON file for the purposes of this post. Here, I am concerned with a specific case where we have a urldefense that redirects to
"https://stage.unitedrentals.com/auth-redirect?redirectPath=%2Fmanage%2Fmanage%2F1262244%2Forders%2F175272349%3Futm_source%3Dsfmc%26utm_medium%3Demail%26utm_campaign%3Denvoy_alteqpdue". As you can see, it contains PercentEncoding.
As you can see in the JSON, there is a path "/" : "/manage/manage//orders/", and a query:
"?" : {
"utm_campaign": "envoy_alteqpdue"
},
This case works correctly, and I have no questions about it.
I'm asking specifically about this component:
"/": "/auth-redirect",
"?": {
"redirectPath": "/manage/manage/*/orders/*",
"utm_campaign": "envoy_alteqpdue"
},
As you can see in the link, there is a "?" after auth-redirect and a "%3F" before utm. Should I understand that everything after auth-redirect? is treated as a single query?
I want to ensure that the app opens a link that has auth-redirect to manage/manage*/orders*/ along with an additional specific query parameter "utm_campaign": "envoy_alteqpdue"
Topic:
App & System Services
SubTopic:
Core OS
Tags: