summaryrefslogtreecommitdiff
path: root/libeufin/concepts.rst
diff options
context:
space:
mode:
authorThien-Thi Nguyen <ttn@gnuvola.org>2020-12-22 22:29:24 -0500
committerThien-Thi Nguyen <ttn@gnuvola.org>2020-12-22 22:29:24 -0500
commit8b56c12d1845b044df381e3cc60bd1e7d8387f9c (patch)
tree9d9dede29d09dd96cd2a475b28d104804a985c6a /libeufin/concepts.rst
parent7a0cef1bfdba2b44b9d3865feca99856f5f35fe1 (diff)
downloaddocs-8b56c12d1845b044df381e3cc60bd1e7d8387f9c.tar.gz
docs-8b56c12d1845b044df381e3cc60bd1e7d8387f9c.tar.bz2
docs-8b56c12d1845b044df381e3cc60bd1e7d8387f9c.zip
in examples, replace curl(1) w/ http(1) invocations (httpie)
Diffstat (limited to 'libeufin/concepts.rst')
-rw-r--r--libeufin/concepts.rst12
1 files changed, 8 insertions, 4 deletions
diff --git a/libeufin/concepts.rst b/libeufin/concepts.rst
index 157d6fe3..a0f2bb7b 100644
--- a/libeufin/concepts.rst
+++ b/libeufin/concepts.rst
@@ -67,7 +67,8 @@ Examples:
.. code-block:: console
# Download latest transactions via the default bank connection and store them locally
- $ curl -XPOST $AUTHEADER https://example1.libeufin.tech/bank-accounts/my-acct/fetch-transactions
+ $ http -a $USER:$PASSWORD POST \
+ https://example1.libeufin.tech/bank-accounts/my-acct/fetch-transactions
Bank Connections
----------------
@@ -101,12 +102,14 @@ Examples:
.. code-block:: console
# Manually request the inter-day account report via the EBICS C52 order
- $ curl -XPOST $AUTHEADER https://example1.libeufin.tech/bank-connections/my-ebics-testacct/ebics/download/C52
+ $ http -a $USER:$PASSWORD POST \
+ https://example1.libeufin.tech/bank-connections/my-ebics-testacct/ebics/download/C52
# Download available bank accounts that can be accessed through this connection,
# according to the bank server (with EBICS, does a HTD request).
# For each of them, create a bank account resource in LibEuFin.
- $ curl -XPOST $AUTHEADER https://example1.libeufin.tech/bank-connection/my-ebics-testacct/fetch-accounts
+ $ http -a $USER:$PASSWORD POST \
+ https://example1.libeufin.tech/bank-connection/my-ebics-testacct/fetch-accounts
Facades
-------
@@ -129,7 +132,8 @@ Examples:
.. code-block:: console
# Request the Taler-specific history through the facade
- $ curl $AUTHEADER https://example1.libeufin.tech/facades/my-taler-wire-gw/taler/history/incoming
+ $ http -a $USER:$PASSWORD \
+ https://example1.libeufin.tech/facades/my-taler-wire-gw/taler/history/incoming
Access Control
==============