Ошибка API Redmine Rest 'Тема не может быть пустой' - PullRequest
0 голосов
/ 02 мая 2019

Я создаю проблему с помощью kbsali redmine api, я получаю тему, не может быть пустой ошибкой, даже если я передаю тему

$result=$client->issue->create([
    'project_id'  => 'projder',
    'subject'     => 'this is subject subject this is subject subject this is subject subject this is subject subject this is subject subject',
    'description' => 'this is subject subject this is subject subject this is subject subject this is subje',
    'assigned_to_id' => '45',
    'priority_id' => $_POST['inputPriority'],
    'uploads'     => array(
        array(
          'token'       => $upload->upload->token,
          'filename'    => $file,
          'description' => 'This is my file description',
          'content_type'=> 'image/png'
        ),
        array(
          'token'       => $uploadoptional->upload->token,
          'filename'    => $optionalUpload,
          'description' => 'Client Attachment',
          'content_type'=> $optionalUploadType
        )
    )
]);



)
SimpleXMLElement Object
(
    [@attributes] => Array
        (
            [type] => array
        )

    [error] => Subject cannot be blank
)

1 Ответ

0 голосов
/ 03 мая 2019

Я нашел решение, права Redmine Subject не были предоставлены пользователю с помощью я отправлял запрос API для создания заявки.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...