调用给定 Dapr 应用程序上的方法。
dapr invoke [flags]
Name | 环境变量 | 默认值 | 说明 |
---|---|---|---|
--app-id , -a | 要调用的应用程序 Id | ||
--help , -h | 显示此帮助消息 | ||
--method , -m | 调用的方法 | ||
--data , -d | JSON 序列化数据字符串(可选) | ||
--data-file , -f | A file containing the JSON serialized data (optional) | ||
--verb , -v | POST | 要使用的 HTTP 谓词 |
dapr invoke --app-id target --method sample --data '{"key":"value"}'
dapr invoke --app-id target --method sample --verb GET