Skip to content

Commit 1e787c6

Browse files
committed
docs(ReadMe): Updated readme to deprecate Conversation and remove legacy API Key instructions
1 parent 917fdd4 commit 1e787c6

File tree

1 file changed

+2
-17
lines changed

1 file changed

+2
-17
lines changed

README.md

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ The credentials for each service contain either a `username`, `password` and end
6767
To get started with the Watson Services in Unity, click on each service below to read through each of their `README.md`'s and their codes.
6868
* [Assistant V1](/Scripts/Services/Assistant/v1)
6969
* [Assistant V2](/Scripts/Services/Assistant/v2)
70-
* [Conversation](/Scripts/Services/Conversation/v1)
70+
* [Conversation](/Scripts/Services/Conversation/v1) (deprecated - Use Assistant V1 or Assistant V2)
7171
* [Discovery](/Scripts/Services/Discovery/v1)
72-
* [Language Translator V2](/Scripts/Services/LanguageTranslator/v2) (deprecated)
72+
* [Language Translator V2](/Scripts/Services/LanguageTranslator/v2) (deprecated - Use LanguageTranslator V3)
7373
* [Language Translator V3](/Scripts/Services/LanguageTranslator/v3)
7474
* [Natural Language Classifier](/Scripts/Services/NaturalLanguageClassifier/v2)
7575
* [Natural Language Understanding](/Scripts/Services/NaturalLanguageUnderstanding/v1)
@@ -84,7 +84,6 @@ Watson services are migrating to token-based Identity and Access Management (IAM
8484

8585
- With some service instances, you authenticate to the API by using **[IAM](#iam)**.
8686
- In other instances, you authenticate by providing the **[username and password](#username-and-password)** for the service instance.
87-
- Visual Recognition uses a form of [API key](#api-key) only with instances created before May 23, 2018. Newer instances of Visual Recognition use [IAM](#iam).
8887

8988
### Getting credentials
9089
To find out which authentication to use, view the service credentials. You find the service credentials for authentication the same way for all Watson services:
@@ -179,20 +178,6 @@ void Start()
179178
}
180179
```
181180

182-
### API key
183-
**Important**: This type of authentication works only with Visual Recognition instances created before May 23, 2018. Newer instances of Visual Recognition use [IAM](#iam).
184-
```cs
185-
using IBM.Watson.DeveloperCloud.Services.VisualRecognition.v3;
186-
using IBM.Watson.DeveloperCloud.Utilities;
187-
188-
void Start()
189-
{
190-
Credentials credentials = new Credentials(<apikey>, <url>);
191-
VisualRecognition _visualRecognition = new VisualRecognition(credentials);
192-
}
193-
```
194-
195-
196181
## Callbacks
197182
Success and failure callbacks are required. You can specify the return type in the callback.
198183
```cs

0 commit comments

Comments
 (0)