From 652e74c39d44de94db808a82c2ac9442ab779824 Mon Sep 17 00:00:00 2001 From: newbe36524 Date: Mon, 5 Apr 2021 15:58:13 +0800 Subject: [PATCH 1/3] update content to v1.1 --- translations/docs-zh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/docs-zh b/translations/docs-zh index 036fc63bf..1ab6c6133 160000 --- a/translations/docs-zh +++ b/translations/docs-zh @@ -1 +1 @@ -Subproject commit 036fc63bf0a919843827e263ec287d55e3188b7b +Subproject commit 1ab6c613330f14da5af23f44053a7bba8da91052 From e49dd06c775407bde0ac789029e57dac8cf3e843 Mon Sep 17 00:00:00 2001 From: newbe36524 Date: Wed, 14 Apr 2021 21:02:41 +0800 Subject: [PATCH 2/3] update zh-hans content --- translations/docs-zh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/translations/docs-zh b/translations/docs-zh index 1ab6c6133..e86abb5f4 160000 --- a/translations/docs-zh +++ b/translations/docs-zh @@ -1 +1 @@ -Subproject commit 1ab6c613330f14da5af23f44053a7bba8da91052 +Subproject commit e86abb5f4cecb77fb9e08ca9dd02832e312b04a8 From a1d9f497ecda53bf73dd1bd78ed453915df8361d Mon Sep 17 00:00:00 2001 From: idjohnson Date: Thu, 15 Apr 2021 09:43:32 -0500 Subject: [PATCH 3/3] Update howto-bindings.md missed 'Content-Type: application/json' in curl command for testing binding --- .../building-blocks/bindings/howto-bindings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/bindings/howto-bindings.md b/daprdocs/content/en/developing-applications/building-blocks/bindings/howto-bindings.md index bcb383872..1cf0d6e88 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/bindings/howto-bindings.md +++ b/daprdocs/content/en/developing-applications/building-blocks/bindings/howto-bindings.md @@ -80,7 +80,7 @@ All that's left now is to invoke the output bindings endpoint on a running Dapr You can do so using HTTP: ```bash -curl -X POST -H http://localhost:3500/v1.0/bindings/myevent -d '{ "data": { "message": "Hi!" }, "operation": "create" }' +curl -X POST -H 'Content-Type: application/json' http://localhost:3500/v1.0/bindings/myevent -d '{ "data": { "message": "Hi!" }, "operation": "create" }' ``` As seen above, you invoked the `/binding` endpoint with the name of the binding to invoke, in our case its `myevent`.