kasi09 / ibaHD-API-Sample-Clients

Sample clients and getting started guide for ibaHD-API

Home Page:https://www.iba-ag.com/en/ibahd-server

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

logo

ibaHD-API

This gRPC-based API allows retrieving historical time and event data from ibaHD-Server. gRPC uses Protobuf both as seralization format and interface definition language. Clients for a wide range of languages can be generated from the interface definition.

Requirements

  • ibaHD-Server version >= 2.5.0
  • ibaHD-API license on Marx dongle

Disclaimer

This code is provided “as is” and serves as an example for the usage of ibaHD-API. The integration of ibaHD-API in external systems and general support for programming languages is not provided by iba AG. All terms of ibaHD-Server's license agreement apply.

Quick Start

Enable and configure ibaHD-API in ibaHD-Server

  1. Enable ibaHD-API
  2. Generate an API key (Only available when user management is enabled)
  3. Generate a TLS server certificate
  4. Export the certificate as PEM format (*.crt, *.key) for usage in the API client

ibaHD_manager

Follow the guidelines of the sample clients:

C# Sample Client

C++ Sample Client

Python Sample Client

Where is the documentation for API calls?

The full API documentation can always be found in C:\Program Files\iba\ibaHD\ibaHD-API\ibaHD-API.proto when ibaHD-Server is installed. It is readable with any text editor.

Depending on the programming language, the casing and naming of the fields and messages might slightly differ from the .proto definition as the Protobuf compiler applies language specific code style conventions when generating the client code.

What about other languages and platforms?

gRPC supports a wide range of languages and platforms, see https://grpc.io/docs/languages/.

For each language a quick start and a basic tutorial is available on the gRPC website. Additionally example code matching the tutorials can be found on GitHub(e.g. Examples for Go)

The steps are similar for all languages:

  1. Take the C:\Program Files\iba\ibaHD\ibaHD-API\ibaHD-API.proto as input for the code generation

  2. Generate the ibaHD-API client code, usually either by using the protoc Protobuf Compiler or other tooling that is referenced in the guide (e.g. Generate the client and server code for Go)

  3. Add generated code to your project

  4. Reference the gRPC base libaries to your project (e.g. Additional imports for Go)

  5. For the client code to work the following data must be set in the gRPC/ibaHD-API client:

    • IP/Hostname of the machine + Port of the ibaHD-API server (default port is 9003, configurable in ibaHD manager)
    • API Key (If user management is enabled)
    • TLS certificate (usually in PEM format)

Additional documentation

Configure TLS for gRPC clients

About

Sample clients and getting started guide for ibaHD-API

https://www.iba-ag.com/en/ibahd-server


Languages

Language:C++ 32.6%Language:CMake 24.6%Language:C# 22.5%Language:Python 20.3%