0
Beantwoord
API & PHP help
Reading the API, I am embarrassingly lost. I could really use some stub code to get me started...
Currently, from within my mobile app, I allow my users to jot down noticed bugs and I send it off to a php page that just makes a list for me. I'd like to have my php instead send these to Lean Testing and add them to my project. I know how/where to get the various info I need, but I'm confused as to what format exactly I'm using to do the final send.
Currently, from within my mobile app, I allow my users to jot down noticed bugs and I send it off to a php page that just makes a list for me. I'd like to have my php instead send these to Lean Testing and add them to my project. I know how/where to get the various info I need, but I'm confused as to what format exactly I'm using to do the final send.
Customer support service by UserEcho
Any POST and PUT request to our API must be JSON formatted.
Here's an example of how to create a bug with PHP and the popular lib Guzzle:
Note: remember to replace the <PROJECT ID> and <OAUTH TOKEN> placeholders.