I am trying to do some performance testing on a REST service.I am using JMeter to do that.
As many REST services, my request service requires authorization token to be passed in Authorization header.
I want to have 5 threads which should use five different tokens to mimic five users.
I have a single Thread group with five threads. I've added HTTP Header Manager to add Authorization header.
How can I substitute each users auth token for each thread? If I use variable then threads uses same auth token.
Is there any better approach for this?


