Skip to content

Commit

Permalink
Fixed CURL example JSON data. (#242)
Browse files Browse the repository at this point in the history
The JSON data in the curl example was not properly formatted so was generating an error when it was copied/pasted.
  • Loading branch information
jocko-wowza authored and yaron2 committed Nov 11, 2019
1 parent f3833ab commit 875264b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion howto/send-events-with-output-bindings/README.md
Expand Up @@ -37,7 +37,7 @@ All that's left now is to invoke the bindings endpoint on a running Dapr instanc
We can do so using HTTP:

```
curl -X POST -H http://localhost:3500/v1.0/bindings/myEvent -d '{ data: { "message": "Hi!" } }'
curl -X POST -H http://localhost:3500/v1.0/bindings/myEvent -d '{ "data": { "message": "Hi!" } }'
```

As seen above, we invoked the `/binding` endpoint with the name of the binding to invoke, in our case its `myEvent`.<br>
Expand Down

0 comments on commit 875264b

Please sign in to comment.