How do I capture "&percentile=50" into a field. looking to track how long they watched a video. It doesn't seem to be pulling any records when I say webpage contains "/video/6216450991001" and query string is "percentile=50". Any thoughts on how to get this to pull into the field?
Query Parameters: provider=brightcove&videoId=6216450991001&videoName=Branches%20and%20service%20delivery&account=105925302001&player=yKXofE3pe&timeWatched=5&percentile=50
Solved! Go to Solution.
In your example, the query string would match
contains "percentile=50"
but would not match
is "percentile=50"
since there are of course other query params. You must always be prepared for query params to occur in any order and to not be the only params supplied.
In your example, the query string would match
contains "percentile=50"
but would not match
is "percentile=50"
since there are of course other query params. You must always be prepared for query params to occur in any order and to not be the only params supplied.