I created a test plan with two requests. In the first request I receive a JSON response from which I select an auth token. In the second request I should reach a page with this token, but instead I get: Authorization: Bearer ${token}''
First response:
{"message":"Success","authentication_token":"UG5FzqsXNb9jnvG8dzbo","token_type":"Bearer","refresh_token":"","user_id":1,"first_name":"John","last_name":"Doe"}
Regular expression:
"authentication_token":"(.+?)"
The regular expression seems to be OK. I tested it with the View Results Tree. I still have Authorization: Bearer ${token}''
in the second request.