Hey, how is this possible im unable to parse a simple response data?
Auth Token:
My Parse Block:
BLOCK:Parse
input = @data.SOURCE
leftDelim = "\"token\":\""
rightDelim = "\",\""
jToken = "token"
MODE:LR
=> VAR @token
ENDBLOCK
Hey, how is this possible im unable to parse a simple response data?
Auth Token:
My Parse Block:
BLOCK:Parse
input = @data.SOURCE
leftDelim = "\"token\":\""
rightDelim = "\",\""
jToken = "token"
MODE:LR
=> VAR @token
ENDBLOCK
you’re doing another http request after that response so data.SOURCE will be overwritten with the new response body of the second request
move your parse block inbetween those two requests
great, thanks solved now