Skip to content

Commit 01c9e00

Browse files
committed
Link each file token operation individually in relevant sections
1 parent 4bcec08 commit 01c9e00

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/routes/docs/products/storage/file-tokens/+page.markdoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ You can then click on the three-dots menu, click on **Copy URL** and get the tok
4141

4242
{% tabsitem #server-sdk title="Server SDK" %}
4343

44-
You can create file tokens programmatically using a [Server SDK](/docs/references/cloud/server-nodejs/tokens). Appwrite's Server SDKs require an [API key](/docs/advanced/platform/api-keys) with the `tokens.write` scope enabled.
44+
You can create file tokens programmatically using a [Server SDK](/docs/references/cloud/server-nodejs/tokens#createFileToken). Appwrite's Server SDKs require an [API key](/docs/advanced/platform/api-keys) with the `tokens.write` scope enabled.
4545

4646
{% multicode %}
4747
```server-nodejs
@@ -321,7 +321,7 @@ Head to the **Storage** page, open a file inside a bucket, and scroll down to th
321321

322322
{% tabsitem #server-sdk title="Server SDK" %}
323323

324-
You can list all file tokens programmatically using a [Server SDK](/docs/references/cloud/server-nodejs/tokens). Appwrite's Server SDKs require an [API key](/docs/advanced/platform/api-keys) with the `tokens.read` scope enabled.
324+
You can list all file tokens programmatically using a [Server SDK](/docs/references/cloud/server-nodejs/tokens#list). Appwrite's Server SDKs require an [API key](/docs/advanced/platform/api-keys) with the `tokens.read` scope enabled.
325325

326326
{% multicode %}
327327
```server-nodejs
@@ -554,7 +554,7 @@ X-Appwrite-Key: <YOUR_API_KEY>
554554
```
555555
{% /multicode %}
556556

557-
Using the token IDs, you can also get data pertaining to an individual file token.
557+
Using the token IDs, you can also get data pertaining to an [individual file token](/docs/references/cloud/server-nodejs/tokens#get).
558558

559559
{% multicode %}
560560
```server-nodejs
@@ -669,7 +669,7 @@ Head to the **Storage** page, open a file inside a bucket, and scroll down to th
669669

670670
{% tabsitem #server-sdk title="Server SDK" %}
671671

672-
You can update file token expiry programmatically using a [Server SDK](/docs/references/cloud/server-nodejs/tokens). Appwrite's Server SDKs require an [API key](/docs/advanced/platform/api-keys) with the `tokens.write` scope enabled.
672+
You can update file token expiry programmatically using a [Server SDK](/docs/references/cloud/server-nodejs/tokens#update). Appwrite's Server SDKs require an [API key](/docs/advanced/platform/api-keys) with the `tokens.write` scope enabled.
673673

674674
{% multicode %}
675675
```server-nodejs
@@ -936,7 +936,7 @@ Head to the **Storage** page, open a file inside a bucket, and scroll down to th
936936

937937
{% tabsitem #server-sdk title="Server SDK" %}
938938

939-
You can delete a file token programmatically using a [Server SDK](/docs/references/cloud/server-nodejs/tokens). Appwrite's Server SDKs require an [API key](/docs/advanced/platform/api-keys) with the `tokens.write` scope enabled.
939+
You can delete a file token programmatically using a [Server SDK](/docs/references/cloud/server-nodejs/tokens#delete). Appwrite's Server SDKs require an [API key](/docs/advanced/platform/api-keys) with the `tokens.write` scope enabled.
940940

941941
{% multicode %}
942942
```server-nodejs

0 commit comments

Comments
 (0)