Skip to content
Advertisement

Tag: api

Get position of Jira ticket within swimlane

I’m using the Atlassian REST API to fetch data regarding Jira tickets. PHP code (snippet): How do I get the current position of a ticket within its column/swimlane of the kanban board? Answer Sort the tickets by Rank. Ideally using ORDER BY Rank ASC in your JQL. This should return your issues in the order they are in the column.

How do we implement custom API-only authentication in Laravel

This isn’t a question so much in need of an answer, but further suggestions and answers and recommendations are welcome. I want to share with the world how I resolved this issue and hope it helps others. Laravel comes with several pre-designed authentication solutions that you can spin up with a few artisan commands. These include: standard users table authentication

How to call .net web service using CUrl PHP?

I have .net web service which i need to call using CUrl in php. Can anybody tell me how to achieve this? Below is my code which is not working and throwing Server Error. Thanks in advance Please see below error for more information: Answer I have used nusoap libraries to call the .net webservices. Check below link: https://www.codeproject.com/Articles/140189/PHP-NuSOAP-Tutorial

Advertisement