Skip to content

Commit c6e7730

Browse files
committed
Change "TokBox" -> "Vonage Video API" in docs
1 parent fd2771a commit c6e7730

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -587,7 +587,7 @@ Reference documentation is available at
587587
## Requirements
588588

589589
You need an OpenTok API key and API secret, which you can obtain by logging into your
590-
[TokBox account](https://tokbox.com/account).
590+
[Vonage Video API account](https://tokbox.com/account).
591591

592592
The OpenTok Java SDK requires JDK 8 or greater to compile. Runtime requires Java SE 8 or greater.
593593
This project is tested on both OpenJDK and Oracle implementations.

src/main/java/com/opentok/OpenTok.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* Contains methods for creating OpenTok sessions, generating tokens, and working with archives.
2929
* <p>
3030
* To create a new OpenTok object, call the OpenTok constructor with your OpenTok API key
31-
* and the API secret for your <a href="https://tokbox.com/account">TokBox account</a>. Do not publicly share
31+
* and the API secret for your <a href="https://tokbox.com/account">Vonage Video API account</a>. Do not publicly share
3232
* your API secret. You will use it with the OpenTok constructor (only on your web
3333
* server) to create OpenTok sessions.
3434
* <p>
@@ -58,8 +58,8 @@ public class OpenTok {
5858
/**
5959
* Creates an OpenTok object.
6060
*
61-
* @param apiKey Your OpenTok API key. (See your <a href="https://tokbox.com/account">TokBox account page</a>.)
62-
* @param apiSecret Your OpenTok API secret. (See your <a href="https://tokbox.com/account">TokBox account page</a>.)
61+
* @param apiKey Your OpenTok API key. (See your <a href="https://tokbox.com/account">Vonage Video API account page</a>.)
62+
* @param apiSecret Your OpenTok API secret. (See your <a href="https://tokbox.com/account">Vonage Video API account page</a>.)
6363
*/
6464
public OpenTok(int apiKey, String apiSecret) {
6565
this.apiKey = apiKey;
@@ -107,7 +107,7 @@ private OpenTok(int apiKey, String apiSecret, HttpClient httpClient) {
107107
* }
108108
* </pre>
109109
* <p>
110-
* For testing, you can also generate tokens by logging in to your <a href="https://tokbox.com/account">TokBox account</a>.
110+
* For testing, you can also generate tokens by logging in to your <a href="https://tokbox.com/account">Vonage Video API account</a>.
111111
*
112112
* @param sessionId The session ID corresponding to the session to which the user will connect.
113113
*
@@ -224,7 +224,7 @@ public String generateToken(String sessionId) throws OpenTokException {
224224
*
225225
* You can also create a session using the <a href="http://www.tokbox.com/opentok/api/#session_id_production">OpenTok
226226
* REST API</a> or or by logging in to your
227-
* <a href="https://tokbox.com/account">TokBox account</a>.
227+
* <a href="https://tokbox.com/account">Vonage Video API account</a>.
228228
*
229229
* @param properties This SessionProperties object defines options for the session.
230230
* These include the following:

0 commit comments

Comments
 (0)