0

I'm using Apache jMeter 5.3. I have a HTTP request which returns JSON response like this:

{
 "result": {
   "certificates": {
     "4b89aa6c131": "MIID2zCC...",
     "ab19aa6c144": "MIID0zCC..."}
  }
}

Is there any way to extract first field name from "certificates" object ("4b89aa6c131" in this example) using JSON Extractor?

Olaf Kock
  • 46,930
  • 8
  • 59
  • 90
Joshgun
  • 372
  • 3
  • 16

1 Answers1

0

I've found a solution from this SO Question using JSR223 PostProcessor instead JSON Extractor:

Joshgun
  • 372
  • 3
  • 16