From 3e21c74e3aacf76a5f7f5012bcfabb8860b56bb2 Mon Sep 17 00:00:00 2001 From: gccgdb1234 Date: Tue, 13 Sep 2022 08:45:45 +0800 Subject: [PATCH] doc: add reference to REST API --- docs/en/15-programming/01-connect/01-python.md | 4 +++- docs/en/15-programming/01-connect/02-java.md | 2 ++ docs/en/15-programming/01-connect/03-go.md | 4 +++- docs/en/15-programming/01-connect/04-rust.md | 2 ++ docs/en/15-programming/01-connect/05-node.md | 4 +++- docs/en/15-programming/01-connect/06-csharp.md | 4 +++- 6 files changed, 16 insertions(+), 4 deletions(-) diff --git a/docs/en/15-programming/01-connect/01-python.md b/docs/en/15-programming/01-connect/01-python.md index 04cf39b057..7f23d93e92 100644 --- a/docs/en/15-programming/01-connect/01-python.md +++ b/docs/en/15-programming/01-connect/01-python.md @@ -82,4 +82,6 @@ Copy code bellow to your editor and run it. {{#include docs/examples/python/develop_tutorial.py:connect}} ``` -For how to write data and query data, please refer to and . \ No newline at end of file +For how to write data and query data, please refer to and . + +For more details about how to write or query data via REST API, please check [REST API](https://docs.tdengine.com/cloud/programming/connector/rest-api/). \ No newline at end of file diff --git a/docs/en/15-programming/01-connect/02-java.md b/docs/en/15-programming/01-connect/02-java.md index 5695a0c50f..113311bc7a 100644 --- a/docs/en/15-programming/01-connect/02-java.md +++ b/docs/en/15-programming/01-connect/02-java.md @@ -78,3 +78,5 @@ Code bellow get JDBC URL from environment variables first and then create a `Con ``` The client connection is then established. For how to write data and query data, please refer to and . + +For more details about how to write or query data via REST API, please check [REST API](https://docs.tdengine.com/cloud/programming/connector/rest-api/). diff --git a/docs/en/15-programming/01-connect/03-go.md b/docs/en/15-programming/01-connect/03-go.md index 44c7909979..c377366aff 100644 --- a/docs/en/15-programming/01-connect/03-go.md +++ b/docs/en/15-programming/01-connect/03-go.md @@ -80,4 +80,6 @@ Finally, test the connection: go run main.go ``` -The client connection is then established. For how to write data and query data, please refer to and . \ No newline at end of file +The client connection is then established. For how to write data and query data, please refer to and . + +For more details about how to write or query data via REST API, please check [REST API](https://docs.tdengine.com/cloud/programming/connector/rest-api/). \ No newline at end of file diff --git a/docs/en/15-programming/01-connect/04-rust.md b/docs/en/15-programming/01-connect/04-rust.md index 53ff2f9d6c..23e51383e5 100644 --- a/docs/en/15-programming/01-connect/04-rust.md +++ b/docs/en/15-programming/01-connect/04-rust.md @@ -74,3 +74,5 @@ Copy following code to `main.rs`. Then you can execute `cargo run` to test the connection. For how to write data and query data, please refer to and . + +For more details about how to write or query data via REST API, please check [REST API](https://docs.tdengine.com/cloud/programming/connector/rest-api/). diff --git a/docs/en/15-programming/01-connect/05-node.md b/docs/en/15-programming/01-connect/05-node.md index 6321c3c407..efd781fc46 100644 --- a/docs/en/15-programming/01-connect/05-node.md +++ b/docs/en/15-programming/01-connect/05-node.md @@ -59,4 +59,6 @@ To obtain the value of cloud token and URL, please log in [TDengine Cloud](https {{#include docs/examples/node/connect.js}} ``` -For how to write data and query data, please refer to and . \ No newline at end of file +For how to write data and query data, please refer to and . + +For more details about how to write or query data via REST API, please check [REST API](https://docs.tdengine.com/cloud/programming/connector/rest-api/). \ No newline at end of file diff --git a/docs/en/15-programming/01-connect/06-csharp.md b/docs/en/15-programming/01-connect/06-csharp.md index 1a1e6639b9..1c67a345b1 100644 --- a/docs/en/15-programming/01-connect/06-csharp.md +++ b/docs/en/15-programming/01-connect/06-csharp.md @@ -64,4 +64,6 @@ Replace with real TDengine cloud DSN. To obtain the real value, please l {{#include docs/examples/csharp/cloud-example/connect/Program.cs}} ``` -The client connection is then established. For how to write data and query data, please refer to and . \ No newline at end of file +The client connection is then established. For how to write data and query data, please refer to and . + +For more details about how to write or query data via REST API, please check [REST API](https://docs.tdengine.com/cloud/programming/connector/rest-api/). \ No newline at end of file -- GitLab