ant4mat

Results 4 comments of ant4mat
trafficstars

Hi, i needed to use x-www-form-urlencoded to simulate messages between two apps. They send eachother x-www-form-urlencoded data, not json. I dont know any more details, since the issue is few...

@nirmalchandra I have attached scenario, and as you can see, i am using helper method to decode JWT and then assert by part of string as i cannot return JSON...

@authorjapps ``` public static String DecodeJWT(String jwtToken){ System.out.println("------------ Decode JWT ------------"); String[] split_string = jwtToken.split("\\."); String base64EncodedHeader = split_string[0]; String base64EncodedBody = split_string[1]; String base64EncodedSignature = split_string[2]; System.out.println("~~~~~~~~~ JWT Header...

That would be an awesome feature.