Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Получение данных batch-методом через входящий вебхук #353

Open
SergeyArc opened this issue Nov 3, 2023 · 0 comments
Labels

Comments

@SergeyArc
Copy link

SergeyArc commented Nov 3, 2023

UPD: Актуально именно для tasks.task.list. Для task.item.list отработает нормально
Обращение к входящему вебхуку, например
https://b24-12cgoe.bitrix24.ru/rest/1/j312zm18fnzby0ls/tasks.task.list/
Возвращает ответ:

{
  "result": {
    "tasks": [...]
  },
  "total": 176,
  "time": {...}
}

при этом в SDK ожидается ответ вида:

{
  "result": {
    [...]
  },
  "total": 176,
  "time": {...}
}

Из-за чего при проходе по результатам массива возникают ошибки, например:

foreach ($firstResultPage->getResponseData()->getResult() as $cnt => $listElement) {
   $lastElementIdInFirstPage = (int)$listElement['ID'];
}

$listElement['ID'] в данном случае null, так как $listElement хранит массив вида:

Array
(
    [0] => Array
        (
            [id] => 1

обработка должна быть:

$lastElem = end($listElement);
$lastElem['id'];

Также не учитывается регистр ключей массива. Везде используется обращение в верхнем регистре ((int)$listElement['ID'];)
Но в результатах ключи возвращаются и в нижнем регистре:

Array
(
    [0] => Array
        (
            [id] => 1

Необходимо приводит к единому регистру:
$lastElem = array_change_key_case($lastElem, CASE_UPPER);

@mesilov mesilov added the bug label Mar 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants