diff --git a/docs/index.rst b/docs/index.rst index bc20ada16..ec6926286 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -49,45 +49,10 @@ Add a connection: username='admin', password='admin') -Key/Cert Based authentication ------------------------------ +Other authentication methods +---------------------------- -Add a connection using key/cert based authentication: - -.. code-block:: python - - from atlassian import Jira - from atlassian import Confluence - from atlassian import Bitbucket - from atlassian import ServiceDesk - from atlassian import Xray - - jira = Jira( - url='http://localhost:8080', - key='/path/to/key', - cert='/path/to/cert') - - confluence = Confluence( - url='http://localhost:8090', - key='/path/to/key', - cert='/path/to/cert') - - bitbucket = Bitbucket( - url='http://localhost:7990', - key='/path/to/key', - cert='/path/to/cert') - - service_desk = ServiceDesk( - url='http://localhost:8080', - key='/path/to/key', - cert='/path/to/cert') - - xray = Xray( - url='http://localhost:8080', - key='/path/to/key', - cert='/path/to/cert') - -Alternatively OAuth can be used: +Further authentication methods are available. For example OAuth can be used: .. code-block:: python