Custom Configurations
Note that we are currently in the process of migrating from "BOSA Connector" to "GL Connectors"; some inconsistencies may appear during this time. For example:
The library name may still be
bosa-connectors-binary, simply to ensure functionality while we need to do the big migration for the libraries and endpoints. We are currently in the process of migration. This GitBook will be updated as soon as the modifications are completed.
Please bear with us as we navigate these new changes.
New in version 0.1.12
There are certain connectors that may require custom authentication or configuration, such as the SQL Plugin (which allows the client to connect to their own Database Configuration). Please check the custom configuration pages for certain connectors for more information.
Custom Configuration Example
bosa = BosaConnector(api_base_url="http://localhost:8000", api_key="your_api_key")
user_token = "a_unique_user_token"
config = {
"url": "postgresql://postgres:postgres@localhost:5432/bosa",
"identifier": "PSQLBosa"
}
integration_result = bosa.initiate_plugin_configuration("sql", user_token, config)
print("Integration initiated:", integration_result)Last updated