skip to Main Content

getting json data into azure pipeline

jobs: # Set an output variable from job A - job: A steps: - powershell: | $image_infor=Invoke-WebRequest https://raw.githubusercontent.com/Sitecore/docker-images/master/tags/sitecore-tags.json ###json data Write-Host $image_infor Write-Host "##vso[task.setvariable variable=myOutput_currentDate;isoutput=true]$image_infor" name: setvarStep # Map the variable into job B - job: B dependsOn: A variables:…

VIEW QUESTION

Iterate JSON using Java

Below is the JSON response that I have received. I am looking to iterate through the JSON response and retrieve the taskId if the status is NEW. Can someone assist me in writing this in Java with org.json? The validation…

VIEW QUESTION
Back To Top
Search