Search found 4 matches
- 31 Jul 2019, 07:28
- Forum: Help
- Topic: Error in REST API
- Replies: 16
- Views: 40328
Re: Error in REST API
For me it was the .htaccess permissions. Try to set CHMOD 600 .htaccess and also chown www-data
- 16 Oct 2017, 20:25
- Forum: General Discussion
- Topic: Rest API
- Replies: 11
- Views: 25920
Re: Rest API
<?php
/**
* MantisBT / MantisHub PHP Client
*
* @author Victor Boctor (vboctor)
* @license MIT License (MIT)
*
* Copyright (c) MantisHub - Victor Boctor
* All rights reserved.
*/
namespace MantisHub;
//Missing until i fix it or dont work on Slim custom routes. below
use SoapClient ...
- 16 Oct 2017, 18:47
- Forum: General Discussion
- Topic: Rest API
- Replies: 11
- Views: 25920
Re: Rest API
Im trying to write a simple PHP Client to Add Issues to the Mautic. Like the following PHP code....
<?php
/*
* @author LAMM <projetos@morettic.com.br>
*/
const BUGTRACKER_REST = "https://bugtracker.morettic.com.br/api/rest/issues/";
class BugTracker extends stdClass {
public static function ...
<?php
/*
* @author LAMM <projetos@morettic.com.br>
*/
const BUGTRACKER_REST = "https://bugtracker.morettic.com.br/api/rest/issues/";
class BugTracker extends stdClass {
public static function ...
- 16 Oct 2017, 17:02
- Forum: General Discussion
- Topic: Rest API
- Replies: 11
- Views: 25920
Re: Rest API
Yes i did. https://bugtracker.morettic.com.br/api/rest/issues/. Can list issues but found no documentation to write a client to it. Need to add ticket(issue) using rest API for my mobile APP. Any ideia?