You're completely right. My bad. I was blindly thinking that the expression
was correct.

The expression should be #.*access_token=([^#&;'"]*)

Thanks for insisting and opening my eyes.


Em 9 de nov de 2017 7:24 AM, "Felix Schumacher" <
[email protected]> escreveu:

>
>
> Am 9. November 2017 11:10:55 MEZ schrieb Flavio Cysne <
> [email protected]>:
> >After the character # there are 3 parameters, and, as I said, you can't
> >guarantee that the parameter the OP is looking for is the very first
> >one.
> >Then this [.*] will look for the parameter name provided in the
> >expression
> >in the entire text after the character #.
>
> As I see it, it will look for exactly on character that can be either a
> dot or an asterisk.
>
> So you either match #.access or #*access. Both seem unwanted to me.
>
> Did you mean (.*)? And if so, should we place a barrier in there?
>
> Felix
> >
> >Thanks for asking.
> >
> >Em 9 de nov de 2017 6:59 AM, "Felix Schumacher" <
> >[email protected]> escreveu:
> >
> >Am 09.11.2017 um 10:56 schrieb Flavio Cysne:
> >
> >> The provided URL have other 2 parameters: scope and id_token.
> >>
> >> You can't guarantee that access_token will be always the first
> >parameter.
> >> But, I think, it will always come after the character #.
> >>
> >> #[.*]access_token=([^#&;"']*)
> >>
> >Why do you have [.*] in between # and access_token?
> >
> >Regards,
> > Felix
> >
> >
> >> This expression can be used to extract the other 2 parameters. Just
> >change
> >> the parameter name in it.
> >>
> >> Hope it helps.
> >>
> >> Em 8 de nov de 2017 7:51 AM, "Srinivas Shenoy" <[email protected]>
> >> escreveu:
> >>
> >> Hi All,
> >>
> >> The unique token comes in a URL . I am supposed to read this and
> >capture in
> >> a variable. I have added a regular expression extractor for URL. It
> >is not
> >> working. Anyone knows about how to extract the URL using regular
> >expression
> >> extractor. Left hand of the token has a format like
> >> https://applicationURL.com/ems-web-ui/#access_token=
> >> However Right hand is blank.
> >> For Ex: An unique token is given below
> >> https://applicationURL.com/#access_token=eyJ0eXAiOiJKV1QiLCJ
> >> 6aXAiOiJOT05FIiwia2lkIjoiYi9PNk92VnYxK3krV2dySDVVaTlXVGlvTHQ
> >> wPSIsImFsZyI6IlJTMjU2In0.eyJzdWIiOiJzc2hlbm95IiwiYXVkaXRUcmF
> >> ja2luZ0lkIjoiZDRkOTgyYmUtMWI4Yy00M2IyLWI1MzYtOThmYmI2NWQxZDR
> >> kIiwiaXNzIjoiaHR0cHM6Ly9vcGVuYW1xYS53di5tZW50b3JnLmNvbTo0NDM
> >> vb3BlbmFtL29hdXRoMiIsInRva2VuTmFtZSI6ImFjY2Vzc190b2tlbiIsInR
> >> va2VuX3R5cGUiOiJCZWFyZXIiLCJhdXRoR3JhbnRJZCI6IjQzNzU2MTc3LWE
> >> 4OWItNDQ3MC05NmQ4LWI4ZDJlNmEyMjg5OSIsIm5vbmNlIjoiZjRBcWt5NmV
> >> UZ3NJaVlKblZ6am9ORFZ1ckU5YzNBazJJZ1BVR1FONiIsImF1ZCI6IkVNU0F
> >> uZ3VsYXJBcHAiLCJuYmYiOjE1MTAxMzYxNzgsImdyYW50X3R5cGUiOiJ0b2t
> >> lbiIsInNjb3BlIjpbIm9wZW5pZCIsInByb2ZpbGUiXSwiYXV0aF90aW1lIjo
> >> xNTEwMTM2MTc4LCJyZWFsbSI6Ii8iLCJleHAiOjE1MTAxMzc5NzgsImlhdCI
> >> 6MTUxMDEzNjE3OCwiZXhwaXJlc19pbiI6MTgwMDAwMCwianRpIjoiZTljYzU
> >> wYzItNDE3YS00ZDE2LTk3NGUtZDViMTg5ZDU0ZTFkIn0.FfczYO8Y2sK_2Br
> >> EHn9py9xgkjjcLq8EeaaW6SWr4rQuQXxjp47JQ9XuiFLoQx4vZshXIm_3sQv
> >> Q7s0QmyglJuqhgbYXxjntP4p_FZ_NCH6Rd9H_-5jmtZe41DP8KUjMvvVoi
> >> HBH8TgYK4megMcr6YOiGESj3i50u2A8HJd-WBHcmCEOqttlHlW-zLh1tieRi
> >> VzrIP4wJRYi9qIH3qAo3vw8etPs7Nejx2yo1MzYRcB1g1SIF8A0LbI7nPFx_
> >> Q8CB5ALDPjLqnyBDd5-WoCAMxOlJRddX1DmKuw4yW4PPCJRhmk-
> >> nXHZyHGqwfjf2H6zXwbTq1-5n5uQoHc7zZViyA&scope=openid%20profil
> >> e&id_token=eyJ0eXAiOiJKV1QiLCJraWQiOiJiL082T3ZWdjEreStXZ3JIN
> >> VVpOVdUaW9MdDA9IiwiYWxnIjoiUlMyNTYifQ.eyJhdF9oYXNoIjoiRGR4Nm
> >> 9uNGxITm5TSWRDeDVPRFBTUSIsInN1YiI6InNzaGVub3kiLCJhdWRpdFRyYW
> >> NraW5nSWQiOiIzYmNiMTg2MC03Y2VhLTQ2ZjQtYWYyNS1kNWUwMTA3MjEzYz
> >> gtMTY1MzkxIiwiaXNzIjoiaHR0cHM6Ly9vcGVuYW1xYS53di5tZW50b3JnLm
> >> NvbTo0NDMvb3BlbmFtL29hdXRoMiIsInRva2VuTmFtZSI6ImlkX3Rva2VuIi
> >> wibWF4SWRsZVRpbWUiOjMwLCJn
> >>
> >> Thank You
> >>
> >> Regards
> >> Shenoy
> >>
> >>
> >
> >---------------------------------------------------------------------
> >To unsubscribe, e-mail: [email protected]
> >For additional commands, e-mail: [email protected]
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

Reply via email to