An open API service indexing awesome lists of open source software.

https://github.com/faulkj/boclient

Business Objects web services client
https://github.com/faulkj/boclient

business-objects client web-services

Last synced: 2 months ago
JSON representation

Business Objects web services client

Awesome Lists containing this project

README

        

# BOClient
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();

}
```