Я пытаюсь использовать Stomp-php (https://github.com/stomp-php/stomp-php) для извлечения данных из Kontakt.io API (https://developer.kontakt.io/backend/le/monitoring/)), но я борюсь за брокерскую часть. В некоторых документах говорится об использовании брокер (например, activeMQ) с Stomp, чтобы заставить его работать, но я не очень понимаю, почему.
Используя stomp в моем интерфейсе, такая вещь не нужна.
Есть идеи, как это работает? Спасибо
На всякий случай, мой код:
// make a connection
$stomp = new Stomp\StatefulStomp(
new Stomp\Client('wss://ovs.kontakt.io:9090/stream?apiKey=key')
);
// send a message to the queue
//$message = new Stomp\Transport\Message(null, array('api-key','key'));
// subscribe to the queue
$stomp->subscribe('/presence/stream/gw');
// receive a message from the queue
$msg = $stomp->read();
// do what you want with the message
if ($msg != null) {
echo "Received message with body '$msg->body'\n";
// mark the message as received in the queue
$stomp->ack($msg);
} else {
echo "Failed to receive a message\n";
}
$stomp->unsubscribe();