Connecting to BugSnag
To authenticate to Bugsnag, you can either use Token or Basic Authentication.
Using Token Authentication
Your Personal AuthToken can be generated in the 'My Account' section of the BugSnag settings page. To authenticate, set the APIKey to your AuthToken in the ProfileSettings connection property.
Example connection string
Profile=C:\profiles\Bugsnag.apip;ProfileSettings='APIKey=my_authtoken';
Using Basic Authentication
To use Basic Authentication, set the User connection property to your BugSnag username/email and the Password connection property to your account password. Additionally, set AuthScheme property to Basic.
Example connection string
Profile=C:\profiles\Bugsnag.apip;ProfileSettings='Authscheme=Basic;User=my_user;Password=my_password';
Connection Properties
The connection string properties are the various options that can be used to establish a connection. This section provides a complete list of the options you can configure in the connection string for this provider.
Property | Description |
APIKey | Your Personal Auth Token. |
AuthScheme | The scheme used for authentication. Accepted entries are None or Basic. Allowed values are: NONE, BASIC |
Password | The password used to authenticate the user. |
User | The API user account used to authenticate. |