You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Docs/publishing-release.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ The following tasks should be completed before publishing a release. Track the p
5
5
-[ ] Review and merge any outstanding pull requests.
6
6
-[ ] Review any oustanding issues assigned to this release milestone.
7
7
-[ ] Branch from `develop` to `rc-[version]`, ex: `rc-2.0.0`.
8
-
-[ ] Draft release with version in the format of `v2.0.0` targeting the 'master' branch. Standard release should be named using the format `Watson Developer Cloud Unity SDK [version]`, ex: `Watson Developer Cloud Unity SDK v2.0.0`.
8
+
-[ ] Draft release with version in the format of `v2.0.0` targeting the 'master' branch. Standard release should be named using the format `IBM Watson SDK for Unity [version]`, ex: `IBM Watson SDK for Unity v2.0.0`.
9
9
10
10
#### Source Changes (in `rc` branch)
11
11
-[ ] Update `String.Version` in `Scripts/Utilities/Constants.cs` to the current version, ex: `watson-apis-unity-sdk/2.0.0`
Copy file name to clipboardExpand all lines: README.md
+11-4Lines changed: 11 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ Ensure that you have the following prerequisites:
29
29
*[Unity][get_unity]. You can use the **free** Personal edition.
30
30
31
31
## Configuring Unity
32
-
* Change the build settings in Unity (**File > Build Settings**) to any platform except for web player/Web GL. The Watson Developer Cloud Unity SDK does not support Unity Web Player.
32
+
* Change the build settings in Unity (**File > Build Settings**) to any platform except for web player/Web GL. The IBM Watson SDK for Unity does not support Unity Web Player.
33
33
* If using Unity 2018.2 or later you'll need to set Scripting Runtime Version in Build Settings to .NET 4.x equivalent. We need to access security options to enable TLS 1.2.
34
34
35
35
## Getting the Watson SDK and adding it to Unity
@@ -107,15 +107,16 @@ You supply either an IAM service **API key** or an **access token**:
107
107
```cs
108
108
IEnumeratorTokenExample()
109
109
{
110
-
// Create IAM token options and supply the apikey.
110
+
// Create IAM token options and supply the apikey. IamUrl is the URL used to get the
111
+
// authorization token using the IamApiKey. It defaults to https://iam.bluemix.net/identity/token
**Authenticating with the `X-Watson-Authorization-Token` header is deprecated. The token continues to work with Cloud Foundry services, but is not supported for services that use Identity and Access Management (IAM) authentication. For details see [Authenticating with IAM tokens](https://console.bluemix.net/docs/services/watson/getting-started-iam.html#iam) or the [README](#IAM) in the IBM Watson SDK you use.**
320
+
317
321
You use tokens to write applications that make authenticated requests to IBM Watson™ services without embedding service credentials in every call.
318
322
319
323
You can write an authentication proxy in IBM Cloud that obtains and returns a token to your client application, which can then use the token to call the service directly. This proxy eliminates the need to channel all service requests through an intermediate server-side application, which is otherwise necessary to avoid exposing your service credentials from your client application.
Watson services have upgraded their hosts to TLS 1.2. The US South region has a TLS 1.0 endpoint that will work for streaming but if you are streaming in other regions you will need to use Unity 2018.2 and set Scripting Runtime Version in Build Settings to .NET 4.x equivalent. In lower versions of Unity you will need to create the Speech to Text instance in US South.
361
+
355
362
## Documentation
356
363
Documentation can be found [here][documentation]. You can also access the documentation by selecting API Reference the Watson menu (**Watson -> API Reference**).
0 commit comments