Skip to content

Commit 61b8ab4

Browse files
committed
add callouts for url redirects
1 parent 7783ed1 commit 61b8ab4

File tree

3 files changed

+52
-12
lines changed

3 files changed

+52
-12
lines changed

reports/llms-report.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
{
2-
"startedAt": "2025-12-15T18:30:25.869Z",
2+
"startedAt": "2025-12-16T15:42:34.752Z",
33
"siteBase": "https://docs.chain.link",
44
"sections": [
55
{
66
"section": "cre-go",
77
"pagesProcessed": 84,
88
"outputPath": "src/content/cre/llms-full-go.txt",
9-
"bytes": 673266,
9+
"bytes": 674210,
1010
"prevBytes": 673266,
11-
"deltaBytes": 0
11+
"deltaBytes": 944
1212
},
1313
{
1414
"section": "cre-ts",
1515
"pagesProcessed": 79,
1616
"outputPath": "src/content/cre/llms-full-ts.txt",
17-
"bytes": 629202,
17+
"bytes": 630146,
1818
"prevBytes": 629202,
19-
"deltaBytes": 0
19+
"deltaBytes": 944
2020
},
2121
{
2222
"section": "vrf",
2323
"pagesProcessed": 35,
2424
"outputPath": "src/content/vrf/llms-full.txt",
2525
"bytes": 301005,
26-
"prevBytes": 301012,
27-
"deltaBytes": -7
26+
"prevBytes": 301005,
27+
"deltaBytes": 0
2828
},
2929
{
3030
"section": "ccip",
@@ -39,8 +39,8 @@
3939
"pagesProcessed": 37,
4040
"outputPath": "src/content/data-feeds/llms-full.txt",
4141
"bytes": 302811,
42-
"prevBytes": 302816,
43-
"deltaBytes": -5
42+
"prevBytes": 302811,
43+
"deltaBytes": 0
4444
},
4545
{
4646
"section": "data-streams",
@@ -87,8 +87,8 @@
8787
"pagesProcessed": 12,
8888
"outputPath": "src/content/resources/llms-full.txt",
8989
"bytes": 340405,
90-
"prevBytes": 340412,
91-
"deltaBytes": -7
90+
"prevBytes": 340405,
91+
"deltaBytes": 0
9292
},
9393
{
9494
"section": "architecture-overview",
@@ -123,5 +123,5 @@
123123
"deltaBytes": 0
124124
}
125125
],
126-
"finishedAt": "2025-12-15T18:30:30.307Z"
126+
"finishedAt": "2025-12-16T15:42:38.996Z"
127127
}

src/content/cre/llms-full-go.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10764,6 +10764,11 @@ All HTTP requests are wrapped in a consensus mechanism to provide a single, reli
1076410764

1076510765
This guide assumes you have a basic understanding of CRE. If you are new, we strongly recommend completing the [Getting Started tutorial](/cre/getting-started/overview) first.
1076610766

10767+
10768+
<Aside type="caution" title="Redirects are not supported">
10769+
HTTP requests to URLs that return redirects (3xx status codes) will fail. Ensure the URL you provide is the final destination and does not redirect to another URL.
10770+
</Aside>
10771+
1076710772
## Choosing your approach
1076810773

1076910774
### Use `http.SendRequest` (Section 1) when:
@@ -10999,6 +11004,11 @@ For this example, we will use <a href="https://webhook.site/" target="_blank">**
1099911004

1100011005
This guide assumes you have a basic understanding of CRE. If you are new, we strongly recommend completing the [Getting Started tutorial](/cre/getting-started/overview) first.
1100111006

11007+
11008+
<Aside type="caution" title="Redirects are not supported">
11009+
HTTP requests to URLs that return redirects (3xx status codes) will fail. Ensure the URL you provide is the final destination and does not redirect to another URL.
11010+
</Aside>
11011+
1100211012
## 1. The `http.SendRequest` Pattern (recommended)
1100311013

1100411014
The `http.SendRequest` helper function is the simplest and recommended way to make `POST` requests. It automatically handles the `cre.RunInNodeMode` pattern for you.
@@ -11532,6 +11542,11 @@ This guide shows how to send a cryptographically signed report (generated by you
1153211542
- Understanding of [generating reports](/cre/guides/workflow/using-evm-client/onchain-write/generating-reports-single-values)
1153311543
- A generated report from `runtime.GenerateReport()`
1153411544

11545+
11546+
<Aside type="caution" title="Redirects are not supported">
11547+
HTTP requests to URLs that return redirects (3xx status codes) will fail. Ensure the URL you provide is the final destination and does not redirect to another URL.
11548+
</Aside>
11549+
1153511550
## Quick start: Minimal example
1153611551

1153711552
Here's the simplest possible workflow that generates and submits a report via HTTP:
@@ -13956,6 +13971,11 @@ The HTTP Client lets you make requests to external APIs from your workflow. Each
1395613971

1395713972
Defines the parameters for an outgoing HTTP request.
1395813973

13974+
13975+
<Aside type="caution" title="Redirects are not supported">
13976+
HTTP requests to URLs that return redirects (3xx status codes) will fail. Ensure the URL you provide is the final destination and does not redirect to another URL.
13977+
</Aside>
13978+
1395913979
| Field | Type | Description |
1396013980
| --------------- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------- |
1396113981
| `Url` | `string` | The URL of the API endpoint. |

src/content/cre/llms-full-ts.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9513,6 +9513,11 @@ All HTTP requests are wrapped in a consensus mechanism to provide a single, reli
95139513

95149514
This guide assumes you have a basic understanding of CRE. If you are new, we strongly recommend completing the [Getting Started tutorial](/cre/getting-started/overview) first.
95159515

9516+
9517+
<Aside type="caution" title="Redirects are not supported">
9518+
HTTP requests to URLs that return redirects (3xx status codes) will fail. Ensure the URL you provide is the final destination and does not redirect to another URL.
9519+
</Aside>
9520+
95169521
## Choosing your approach
95179522

95189523
### Use `sendRequest` (Section 1) when:
@@ -9896,6 +9901,11 @@ For this example, we will use <a href="https://webhook.site/" target="_blank">**
98969901

98979902
This guide assumes you have a basic understanding of CRE. If you are new, we strongly recommend completing the [Getting Started tutorial](/cre/getting-started/overview) first.
98989903

9904+
9905+
<Aside type="caution" title="Redirects are not supported">
9906+
HTTP requests to URLs that return redirects (3xx status codes) will fail. Ensure the URL you provide is the final destination and does not redirect to another URL.
9907+
</Aside>
9908+
98999909
## 1. The High-Level `sendRequest` Pattern (recommended)
99009910

99019911
The high-level `sendRequest()` method is the simplest and recommended way to make `POST` requests. It automatically handles the `runInNodeMode` pattern for you.
@@ -10333,6 +10343,11 @@ This guide shows how to send a cryptographically signed report (generated by you
1033310343
- Familiarity with [making POST requests](/cre/guides/workflow/using-http-client/post-request)
1033410344
- Familiarity with `runtime.report()` (covered [below](#generating-reports-for-http-submission))
1033510345

10346+
10347+
<Aside type="caution" title="Redirects are not supported">
10348+
HTTP requests to URLs that return redirects (3xx status codes) will fail. Ensure the URL you provide is the final destination and does not redirect to another URL.
10349+
</Aside>
10350+
1033610351
## Quick start: Minimal example
1033710352

1033810353
Here's the simplest possible workflow that generates and submits a report via HTTP:
@@ -13804,6 +13819,11 @@ const fetchPrice = (sendRequester: HTTPSendRequester, url: string): number => {
1380413819

1380513820
Defines the parameters for an outgoing HTTP request.
1380613821

13822+
13823+
<Aside type="caution" title="Redirects are not supported">
13824+
HTTP requests to URLs that return redirects (3xx status codes) will fail. Ensure the URL you provide is the final destination and does not redirect to another URL.
13825+
</Aside>
13826+
1380713827
| Field | Type | Description |
1380813828
| --------------- | ------------------------------------------------- | --------------------------------------------------------------- |
1380913829
| `url` | `string` | The URL of the API endpoint. |

0 commit comments

Comments
 (0)