json - parse JIRA REST API response using php -
i tried several times , several methods parse long json data in jira rest api response. couldn't
i want parse json using php. used pure php , curl couldn’t. please me solve this. i'm new in rest api , php-curl
here jira rest response https://jira.atlassian.com/rest/api/latest/issue/jra-9
here sample php-curl code
<?php $ch = curl_init(); curl_setopt($ch, curlopt_url, "https://jira.atlassian.com/rest/api/latest/issue/jra-9"); curl_exec($ch); curl_close($ch); ?>
Comments
Post a Comment