Establishing a Connection
The objects available within our connector are accessible from the "cdata.bugzilla" module. In order to use the module's objects directly, the module must first be imported as below:
import cdata.bugzilla as mod
From there, the connect() method can be called from the connector object to establish a connection using an appropriate connection string, such as the below:
mod.connect(" Url=http://<yourdomainname>/Bugzilla;APIKey=abc123;")
Connecting to Bugzilla
You can use the Bugzilla developer's UI to establish a connection to your Bugzilla instance.
Authenticate a Bugzilla Account
You can authenticate to your Bugzilla account using two parameters:
- URL. This is the URL of your Bugzilla developer's page (the Home page).
- ApiKey. API Keys can be generated from the Preferences > API Keys section of your Bugzilla developer's page.