I try to get token in a json to put it in Bearer token to run jmeter, but it does not get the correct content which i want.
Json likes this:
{"access_token":"xxxxxxxxxxxxxxxx","token_type":.......}
I want to get the xxxxxxxxxx only.
I try with regular: \"access_token":"([^\:]*)\"
, but it returns "access_token":"xxxxxxxxxxxxxxxx".
Please help me to have the correct regular expression. Thanks.