Skip to content

Commit fbc4f22

Browse files
committed
DOC-3351: Fix broken outdated link to customer portal, copy edits v7.
1 parent 5f7d2ff commit fbc4f22

9 files changed

+23
-24
lines changed

antora.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ asciidoc:
5656
download-community: https://www.tiny.cloud/get-tiny/self-hosted/
5757
download-enterprise: https://www.tiny.cloud/my-account/downloads/
5858
accountpageurl: https://www.tiny.cloud/my-account
59-
accountkeyurl: https://www.tiny.cloud/my-account/key-manager/
6059
accountjwturl: https://www.tiny.cloud/my-account/jwt/
6160
accountsignup: https://www.tiny.cloud/auth/signup
6261
pricingpage: https://www.tiny.cloud/pricing

modules/ROOT/pages/tinydrive-dotnet.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project will help you get started with {cloudfilemanager} using .NET and al
1313
Before you start your journey with {cloudfilemanager}, it will go a lot smoother if you have done these steps:
1414

1515
. Login/register to {accountpageurl}[{accountpage}]
16-
. Get a link:{accountkeyurl}[{cloudname} API Key]
16+
. Get a link:{accountpageurl}[{cloudname} API Key]
1717
. Get a link:{accountjwturl}[JWT Key]
1818

1919
Store the keys temporarily somewhere as you will need to copy & paste them later.
@@ -37,12 +37,12 @@ $ git clone [email protected]:tinymce/tinydrive-dotnet-starter.git
3737
[[change-the-apikey-in-tinydrive-dotnet-mvc-starterappsettingsdevelopmentjson]]
3838
==== 2. Change the `+apiKey+` in `+tinydrive-dotnet-mvc-starter/appsettings.Development.json+`
3939

40-
The API key can be generated using the `+API Key Manager+` {accountpage} page at http://tiny.cloud.
40+
Get your API key from the link:{accountpageurl}[{accountpage}] and replace the placeholder value in the `+appsettings.Development.json+` file.
4141

4242
[[create-a-tinydrive-dotnet-mvc-starterprivatekey-file-containing-your-generated-private-rsa-key]]
4343
==== 3. Create a `+tinydrive-dotnet-mvc-starter/private.key+` file containing your generated private RSA key
4444

45-
You get the private RSA key from the `+JWT Key Manager+` {accountpage} page at http://tiny.cloud.
45+
Use the "Generate New Keypair" option at link:{accountjwturl}[{accountpage} - JWT Keys] to create a key pair. Download the private key from the generated key pair and save it to the `+private.key+` file.
4646

4747
[[go-to-the-directory-and-start-the-dev-server]]
4848
==== 4. Go to the directory and start the dev server

modules/ROOT/pages/tinydrive-getting-started.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ include::partial$plugins/tinydrive-starter-projects.adoc[]
1616
The steps required for setting up {cloudfilemanager} are:
1717

1818
. Register for a {cloudname} API key.
19-
. Add a public key to the {cloudname} API key.
19+
. Add a public key in the JWT Keys section of your account portal.
2020
. Set up a JSON Web Token (JWT) Provider endpoint (or server).
2121
. Configure the required {productname} options.
2222

modules/ROOT/pages/tinydrive-java.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project will help you get started with {cloudfilemanager} and allow you to
1313
Before you start your journey with {cloudfilemanager}, it will go a lot smoother if you have done these steps:
1414

1515
. Login/register to {accountpageurl}[{accountpage}]
16-
. Get a link:{accountkeyurl}[{cloudname} API Key]
16+
. Get a link:{accountpageurl}[{cloudname} API Key]
1717
. Get a link:{accountjwturl}[JWT Key]
1818

1919
Store the keys temporarily somewhere as you will need to copy & paste them later.
@@ -37,12 +37,12 @@ $ git clone [email protected]:tinymce/tinydrive-java-spring-starter.git
3737
[[change-the-apikey-in-tinydrive-java-spring-startersrcmainresourcesapplicationyml]]
3838
==== 2. Change the `+apiKey+` in `+tinydrive-java-spring-startersrc/main/resources/application.yml+`
3939

40-
The API key can be generated using the `+API Key Manager+` {accountpage} page at http://tiny.cloud.
40+
Get your API key from the link:{accountpageurl}[{accountpage}] and replace the placeholder value in the `+application.yml+` file.
4141

4242
[[create-a-tinydrive-java-spring-startersrcmainresourcesprivatekey-file-containing-your-generated-private-rsa-key]]
4343
==== 3. Create a `+tinydrive-java-spring-starter/src/main/resources/private.key+` file containing your generated private RSA key
4444

45-
You get the private RSA key from the `+JWT Key Manager+` {accountpage} page at http://tiny.cloud.
45+
Use the "Generate New Keypair" option at link:{accountjwturl}[{accountpage} - JWT Keys] to create a key pair. Download the private key from the generated key pair and save it to the `+private.key+` file.
4646

4747
[[go-to-the-directory-and-install-npm-packages-and-then-start-the-dev-server]]
4848
==== 4. Go to the directory and install npm packages and then start the dev server

modules/ROOT/pages/tinydrive-jwt-authentication.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ TIP: If you haven't tried any of the xref:tinydrive-getting-started.adoc#starter
1919
== Overview
2020

2121
* xref:setting-up-jwt-authentication-for-tiny-drive[Setting up JWT authentication for Tiny Drive]
22-
* xref:add-a-public-key-to-the-tiny-cloud-api-key[Add a public key to the Tiny Cloud API key]
22+
* xref:add-a-public-key-to-the-tiny-cloud-api-key[Add a public key in the JWT Keys section of your account portal]
2323
* xref:set-up-a-json-web-token-jwt-endpoint[Set up a JSON Web Token (JWT) endpoint]
2424
* xref:jwt-endpoint-examples[JWT endpoint examples]
2525

modules/ROOT/pages/tinydrive-nodejs.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project will help you get started with {cloudfilemanager} and allow you to
1313
Before you start your journey with {cloudfilemanager}, it will go a lot smoother if you have done these steps:
1414

1515
. Login/register to {accountpageurl}[{accountpage}]
16-
. Get a link:{accountkeyurl}[{cloudname} API Key]
16+
. Get a link:{accountpageurl}[{cloudname} API Key]
1717
. Get a link:{accountjwturl}[JWT Key]
1818

1919
Store the keys temporarily somewhere as you will need to copy & paste them later.
@@ -37,12 +37,12 @@ $ git clone [email protected]:tinymce/tinydrive-nodejs-starter.git
3737
[[change-the-apikey-in-tinydrive-nodejs-starterconfigjs]]
3838
==== 2. Change the `+apiKey+` in `+tinydrive-nodejs-starter/config.js+`
3939

40-
You get the API key from the `+API Key Manager+` {accountpage} page at http://tiny.cloud.
40+
Get your API key from the link:{accountpageurl}[{accountpage}] and replace the placeholder value in the `+config.js+` file.
4141

4242
[[create-a-tinydrive-nodejs-starterprivatekey-file-containing-your-generated-private-rsa-key]]
4343
==== 3. Create a `+tinydrive-nodejs-starter/private.key+` file containing your generated private RSA key
4444

45-
You get the private RSA key from the `+JWT Key Manager+` {accountpage} page at http://tiny.cloud.
45+
Use the "Generate New Keypair" option at link:{accountjwturl}[{accountpage} - JWT Keys] to create a key pair. Download the private key from the generated key pair and save it to the `+private.key+` file.
4646

4747
[[go-to-the-directory-and-install-npm-packages-and-then-start-the-dev-server]]
4848
==== 4. Go to the directory and install npm packages and then start the dev server

modules/ROOT/pages/tinydrive-php.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This project will help you get started with {cloudfilemanager} and allow you to
1313
Before you start your journey with {cloudfilemanager}, it will go a lot smoother if you have done these steps:
1414

1515
. Login/register to link:{accountpageurl}[{accountpage}]
16-
. Get a link:{accountkeyurl}[{cloudname} API Key]
16+
. Get a link:{accountpageurl}[{cloudname} API Key]
1717
. Get a link:{accountjwturl}[JWT Key]
1818

1919
Store the keys temporarily somewhere as you will need to copy & paste them later.
@@ -37,12 +37,12 @@ $ git clone [email protected]:tinymce/tinydrive-php-starter.git
3737
[[change-the-apikey-in-tinydrive-php-starterconfigphp]]
3838
==== 2. Change the `+apiKey+` in `+tinydrive-php-starter/config.php+`
3939

40-
You get the API key from the `+API Key Manager+` {accountpage} page at http://tiny.cloud.
40+
Get your API key from the link:{accountpageurl}[{accountpage}] and replace the placeholder value in the `+config.php+` file.
4141

4242
[[create-a-tinydrive-php-starterprivatekey-file-containing-your-generated-private-rsa-key]]
4343
==== 3. Create a `+tinydrive-php-starter/private.key+` file containing your generated private RSA key
4444

45-
You get the private RSA key from the `+JWT Key Manager+` {accountpage} page at http://tiny.cloud.
45+
Use the "Generate New Keypair" option at link:{accountjwturl}[{accountpage} - JWT Keys] to create a key pair. Download the private key from the generated key pair and save it to the `+private.key+` file.
4646

4747
[[go-to-the-directory-and-start-the-dev-server]]
4848
==== 4. Go to the directory and start the dev server
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
The **{pluginname}** Server requires a _public_ key generated from the same _private_ key that will be used on your JSON Web Token (JWT) provider endpoint. The public key(s) stored on the {pluginname} Server are used to ensure that content is sent by authorized users.
22

3-
There are two methods for generating and adding a public key to your API key:
3+
There are two methods for generating and adding a public key in the JWT Keys section of your account portal:
44

5-
. The secure key pair generator at link:{accountjwturl}[{accountpage} - JWT Keys] (recommended).
6-
. Generate a key pair locally and add the _public_ key to link:{accountjwturl}[{accountpage} - JWT Keys].
5+
. Generate New Keypair at link:{accountjwturl}[{accountpage} - JWT Keys] (recommended).
6+
. Generate a key pair locally and Import Public Key at link:{accountjwturl}[{accountpage} - JWT Keys].
77

88
== Generate a key pair using the {accountpage} JWT Keys page
99

10-
The link:{accountjwturl}[{accountpage} - JWT Keys] page provides a private/public key generator, providing a quick and secure way of generating the required keys. This generator will store a copy of the _public_ key, and provide a downloadable file for both the public and private keys. {companyname} does **not store** the _private_ key and the key pair **cannot** be retrieved later.
10+
The link:{accountjwturl}[{accountpage} - JWT Keys] page provides a "Generate New Keypair" option, providing a quick and secure way of generating the required keys. This will store a copy of the _public_ key, and provide a downloadable file for both the public and private keys. {companyname} does **not store** the _private_ key and the key pair **cannot** be retrieved later.
1111

1212
[[generate-a-key-pair-locally]]
1313
== Generate a key pair locally
@@ -19,11 +19,11 @@ For instructions on generating a key pair locally, see: xref:generate-rsa-key-pa
1919

2020
[[add-a-public-key-to-the-tiny-cloud-api-key]]
2121
ifeval::[{numberedHeading} == true]
22-
= 2. Add a public key to the {cloudname} API key
22+
= 2. Add a public key in the JWT Keys section of your account portal
2323
endif::[]
2424

2525
ifeval::[{numberedHeading} != true]
26-
== Add a public key to the {cloudname} API key
26+
== Add a public key in the JWT Keys section of your account portal
2727
endif::[]
2828

29-
Once a public key has been generated, add the public key to the {cloudname} API key at: link:{accountjwturl}[{accountpage} - JWT Keys].
29+
Once a public key has been generated locally, use the "Import Public Key" option in the JWT Keys section of your account portal at: link:{accountjwturl}[{accountpage} - JWT Keys].
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
The {pluginname} Server requires a _public_ key generated from the same _private_ key that will be used on your JSON Web Token (JWT) provider endpoint. The public key(s) stored on the {pluginname} Server are used to ensure that content is sent by authorized users.
22

3-
There are two methods for generating and adding a public key to your API key:
3+
There are two methods for generating and adding a public key in the JWT Keys section of your account portal:
44

55
== Generate a key pair using the {accountpage} JWT Keys page
66

7-
The link:{accountjwturl}[{accountpage} - JWT Keys] page provides a private/public key generator, providing a quick and secure way of generating the required keys. This generator will store a copy of the _public_ key, and provide a downloadable file for both the public and private keys. {companyname} does **not store** the _private_ key and the key pair **cannot** be retrieved later.
7+
The link:{accountjwturl}[{accountpage} - JWT Keys] page provides a "Generate New Keypair" option, providing a quick and secure way of generating the required keys. This will store a copy of the _public_ key, and provide a downloadable file for both the public and private keys. {companyname} does **not store** the _private_ key and the key pair **cannot** be retrieved later.
88

99
[[generate-a-key-pair-locally]]
1010
== Generate a key pair locally

0 commit comments

Comments
 (0)