From 4b563a5ca51a358950cfe29ff5416b5eba33e520 Mon Sep 17 00:00:00 2001 From: basst85 Date: Tue, 12 Jun 2018 08:46:46 +0200 Subject: [PATCH 1/2] Remove references to PHP examples. (bunq/doc#60) This PHP examples are no longer present on doc,bunq.com, and are also outdated. --- DESCRIPTION.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION.md b/DESCRIPTION.md index d83c32e..6ee4443 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -97,7 +97,7 @@ Consider the following request, a `POST` to `/v1/user/126/monetary-account/22 } ``` -Let's sign that request (using PHP example code). First create a variable `$dataToSign`, starting with the type and endpoint url. Follow that by a list of headers only including `Cache-Control`, `User-Agent` and headers starting with `X-Bunq-`. Add an extra (so double) linefeed after the list of headers. Finally end with the body of the request: +Let's sign that request. First create a variable `$dataToSign`, starting with the type and endpoint url. Follow that by a list of headers only including `Cache-Control`, `User-Agent` and headers starting with `X-Bunq-`. Add an extra (so double) linefeed after the list of headers. Finally end with the body of the request: `POST /v1/user/126/monetary-account/222/payment` @@ -559,7 +559,7 @@ The calls you need to perform to set up a session from scratch are the following Each call needs to be signed with your own private key. An Installation is used to tell the server about the public key of your key pair. The server uses this key to verify your subsequent calls. -Start by generating a 2048-bit RSA key pair. You can find out how to generate a key pair in our PHP coding examples. +Start by generating a 2048-bit RSA key pair. #### Headers @@ -744,4 +744,4 @@ To decide how you are going to make your tab visible, pass a visibility object i Setting `cash_register_qr_code` to true will connect this tab to the QR code from the cash register. If this cash register does not have a QR code yet, one will be created. Only one Tab can be connected to the cash register’s QR code at any given time. -Setting `tab_qr_code` to true will create a QR code specifically for this tab. This QR code can not be linked to anything else. \ No newline at end of file +Setting `tab_qr_code` to true will create a QR code specifically for this tab. This QR code can not be linked to anything else. From 4470b8a304e8bd56a5bd2b415837f412f7186ba1 Mon Sep 17 00:00:00 2001 From: Kevin Hellemun Date: Thu, 30 Aug 2018 14:31:29 +0200 Subject: [PATCH 2/2] Added reference to sdk's on github. (bunq/doc#60) --- DESCRIPTION.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION.md b/DESCRIPTION.md index e02ad72..e7358a2 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -897,7 +897,7 @@ The calls you need to perform to set up a session from scratch are the following Each call needs to be signed with your own private key. An Installation is used to tell the server about the public key of your key pair. The server uses this key to verify your subsequent calls. -Start by generating a 2048-bit RSA key pair. +Start by generating a 2048-bit RSA key pair. You can find examples by looking at the source code of the sdk's located at github. #### Headers