faulkj/boclient

Business Objects web services client

v2.1.1 2023-01-14 03:58 UTC

This package is auto-updated.

Last update: 2024-06-14 07:05:17 UTC


README

Business Objects web services client

$bo = new BOClient(
   new WebClient("https://my.host.com"),
   "username",
   "password"
);

if($this->bo->authenticate()) {

   $list = [];
   if($lst = $bo->query("raylight/v1/universes", [
      "qs" => "limit=$limit&offset=$offset"
   ])) {
      $t = simplexml_load_string($lst);
      foreach ($t->universe as $u) {
         $uid = (int) $u->id;
         echo $uid;
      }
   }

   $bo->logoff();

}