taler-docs

Documentation for GNU Taler components, APIs and protocols
Log | Files | Refs | README | LICENSE

commit f4fbc477ce4d122d4b4b4be961700e715d8b1fd7
parent 35f94090e2fdd90d560da1fed5d1079dcd6eefd2
Author: Christian Grothoff <grothoff@gnunet.org>
Date:   Sun, 17 Jul 2022 10:48:57 +0200

-fix typo in url, thanks to Raphael for spotting it

Diffstat:
Mtaler-merchant-api-tutorial.rst | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/taler-merchant-api-tutorial.rst b/taler-merchant-api-tutorial.rst @@ -224,7 +224,7 @@ A minimal Python snippet for creating an order would look like this: ... summary="Donation", ... fulfillment_url="https://example.com/thanks.html"), ... create_token=false) - >>> response = requests.post("https://backend.demo.taler.net/private/order", + >>> response = requests.post("https://backend.demo.taler.net/private/orders", ... json=body, ... headers={"Authorization": "ApiKey sandbox"}) <Response [200]>