diff --git a/README.md b/README.md index 48db8384..2e920d86 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ pip install dohq-artifactory==0.5.dev243 `dohq-artifactory` supports these ways of authentication: -- Username and password (or [API KEY](https://www.jfrog.com/confluence/display/RTF/Updating+Your+Profile#UpdatingYourProfile-APIKey), or [Access Tokens](https://www.jfrog.com/confluence/display/JFROG/Access+Tokens#AccessTokens-UsingTokens)) to access restricted resources, you can pass ```auth``` parameter to ArtifactoryPath. +- Username and password (or [API KEY](https://www.jfrog.com/confluence/display/RTF/Updating+Your+Profile#UpdatingYourProfile-APIKey)) to access restricted resources, you can pass ```auth``` parameter to ArtifactoryPath. - [API KEY](https://www.jfrog.com/confluence/display/RTF/Updating+Your+Profile#UpdatingYourProfile-APIKey) can pass with `apikey` parameter. - [Access Token](https://www.jfrog.com/confluence/display/JFROG/Access+Tokens#AccessTokens-UsingTokens) can pass with `token` parameter. @@ -97,7 +97,7 @@ path = ArtifactoryPath( # User and password OR API_KEY path = ArtifactoryPath( "http://my-artifactory/artifactory/myrepo/restricted-path", - auth=("USERNAME", "PASSWORD, API_KEY or ACCESS_TOKEN"), + auth=("USERNAME", "PASSWORD or API_KEY"), ) # Other authentication types