Terrible Toll Posted April 18, 2024 Posted April 18, 2024 We would like to be able to trigger payment orders through the Revolut Merchant API from FileMaker. We have the merchant account set up but I just need to understand the vagueries of calling the API from a FileMaker script step. I have no experience with accessing secure APIs. Has anyone any knowledge of this who might be bale to point me in the right direction or have any example scripts for similar APIs that I might be able to doctor? Many thanks
Terrible Toll Posted April 19, 2024 Author Posted April 19, 2024 Further to this, I have now succeeded in raising orders from Postman. I am now just struggling to post this code from FileMaker. The code works perfectly from Postman and also from Terminal, but when I send it from FileMaker I get Error: Length Required. I understand that this may have been added to the header automatically by Postman and possibly also Terminal, but I cannot see it anywhere and when I add it to FileMaker I just get a request timeout. I have been calculating length by simply measuring the length of the body e.g. $length = length($body), where $body = "{\"amount\": 60000, \"currency\": \"GBP\"}". In this case it is 38. Am I getting this calculation wrong?
comment Posted April 19, 2024 Posted April 19, 2024 On 4/18/2024 at 5:10 PM, Terrible Toll said: We would like to be able to trigger payment orders through the Revolut Merchant API from FileMaker. I am not a user of this API, so I don't know what their requirements are. I don't think anyone will be able to help you based on these snippets. If you have a working call in Postman and/or in Terminal, why don't you post it here, alongside the exact call you are making from Filemaker (after obscuring the credentials in both, of course). If you get an error, post the full and exact error message/s you get*. And if you have a link to their help page where their requirement is specified, that might help too. --- (*) Follow the instructions here to make sure you get all the information about an error: https://help.claris.com/en/pro-help/content/curl-options.html?#non_toc_606244520_1114804
Terrible Toll Posted April 19, 2024 Author Posted April 19, 2024 My apologies - I thought it might just be a problem that is common to many APIs that require content length to be specified in the header. Below is the simplest code that works to trigger a new payment order on the account. But when I run this from an Insert from URL script set in Filemaker, I simply get back Error: Length Required in the HTML response. curl --location 'https://merchant.revolut.com/api/orders' \ --header 'Revolut-Api-Version: 2023-09-01' \ --header 'Accept: application/json' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer <<APIkey>>' \ --data '{ "amount": "10000", "currency": "EUR" }'
comment Posted April 19, 2024 Posted April 19, 2024 (edited) I am not aware of any API that requires content length to be specified in the header. Perhaps that's just limit of my experience, but I doubt it. I also doubt that the API uses the term "length" in the same sense that Filemaker does. It probably refers to: https://www.w3.org/Protocols/HTTP/1.0/draft-ietf-http-spec.html#Content-Length What happens if you add: --header "Content-Length: 0" ? Edited April 20, 2024 by comment
Terrible Toll Posted April 20, 2024 Author Posted April 20, 2024 Thanks for the response to my query. I tried --header "Content-Length 0 and received the response: 404 not found I suspect you are right about calculating the Content-Length correctly (rather than just using the FileMaker letter count), but I don't know how to calculate this from within FileMaker. "Content-Length entity-header field indicates the size of the Entity-Body, in decimal number of octets!" Any ideas how FileMaker might be able to do this? However, I may be barking up the wrong tree - the 404 may be the error that counts. It seems that Content-Length may be set automatically as part of any cURL request, so there could be something else in my FileMaker Insert from URL code that is wrong: " -X POST --location \"https://merchant.revolut.com/api/orders\" --header \"Revolut-Api-Version: 2023-09-01\" --header \"Accept: application/json\" --header \"Content-Type: application/json\" --header \"Authorization: Bearer " & $secretKey & "\" --data \"{ \"amount\": 10000, \"currency\": \"GBP\" }\" " This code works in Postman and MacOS Terminal but results in 'Error: Length Required' when sent using Insert from URL from FileMaker. I have tried many variations, but with no success. I guess that the --location line may be unnecessary, as the Insert from URL script already has this, but removing it makes no difference. Any ideas?
comment Posted April 20, 2024 Posted April 20, 2024 I also think that this is just a symptom of another problem. I would try removing the -X POST part (probably won't make any difference, but anyway) and either removing the outer quotes surrounding the JSON, or sending it as --data @$postData where $postData is a variable containing the JSON.
Terrible Toll Posted April 20, 2024 Author Posted April 20, 2024 Thanks very much - I have tried this, but still get Error: 404 Not Found " --location \"https://merchant.revolut.com/api/orders\" -H \"Revolut-Api-Version: 2023-09-01\" -H \"Accept: application/json\" -H \"Content-Type: application/json\" -H \"Authorization: Bearer " & $secretKey & "\" --data @$jsonData " $jsonData is JSONSetElement ( "{}"; ["amount"; 60000 ; 2]; ["currency"; "EUR"; 1] )
comment Posted April 20, 2024 Posted April 20, 2024 (edited) I am afraid I don't know. I would try removing some or all of the top 3 options, but that's just blind groping. If you cannot make it work through the native Insert from URL step, try the BaseElements plugin: https://docs.baseelementsplugin.com/article/517-behttppost Edited April 20, 2024 by comment 1
Terrible Toll Posted April 20, 2024 Author Posted April 20, 2024 (edited) OK - I'll have a go with BE and maybe trawl through some of the FileMaker Training stuff and see if that illuminates anything. I wish there was a simpler way of taking the code from Postman and applying it to FileMaker. P.s. The Revolut version number and Auth are essentials - the others are standard header stuff so I would I think they should be OK. Thanks very much for your thoughts. Edited April 20, 2024 by Terrible Toll
Terrible Toll Posted April 23, 2024 Author Posted April 23, 2024 Moving on further from my previous post, I have tried submitting the same code through Postman (works), Terminal (works)*, Filemaker Insert from URL (error404) and BE_HTTP_POST (error404). So there is something in the way that FileMaker is creating the cURL data or submitting the POST that is upsetting the Revolut API. Using the same scripting I have accessed the Open AI API successfully, so I can be fairly sure that the code and JSON is formatted correctly. * code posted previously in black panel. I have also tried this with the JSON body formatted using JSONSetElement with the same results. Does anyone know if there is a way of intercepting the Post to see what is actually being sent from FileMaker to the target API? Many thanks
comment Posted April 23, 2024 Posted April 23, 2024 Are you sure you have fully exhausted all the features of the --show-error option? https://help.claris.com/en/pro-help/content/curl-options.html?#non_toc_606244520_1114804 If so, the next step would be to use the --trace option.
Terrible Toll Posted April 28, 2024 Author Posted April 28, 2024 Thanks for the response. Unfortunately, I have no idea if I have exhausted the features of --show-error and --trace as I have no idea how to use them. The FileMaker documentation mentions them but gives no clue of how they should be used. If I add them to the cURL code, nothing extra all is revealed beyond the 404 Not found response! No error is reported by FileMaker.
comment Posted April 28, 2024 Posted April 28, 2024 3 hours ago, Terrible Toll said: The FileMaker documentation mentions them but gives no clue of how they should be used. Actually it does , though you have to read closely to find it. To use the trace option, add this to your CURL options: --trace $trace and add a script step (after the Insert from URL step): Set Field [ YourTable::Trace; $trace ] (make sure it's a Text field). This should place the complete exchange between you and the API in the field. If you compare this to a similar trace produced by Postman or Terminal, you should be able to find what's different (though I wouldn't expect it to be easy).
Terrible Toll Posted April 28, 2024 Author Posted April 28, 2024 Thank you very much - however, I don't get anything. Probably because I don't know how to add it to the cURL options in FileMaker. Is inside quotes or outside? That's what I mean about the documentation - it doesn't explain how to format the code in FileMaker. I tried adding the following lines, but none seem to do anything: Set Variable $cURL & "--trace " & $trace Set Variable $cURL & "--trace " & Quote( $trace ) Set Variable $cURL & "--trace " & $trace Set Variable $cURL & "-t @$trace"
comment Posted April 29, 2024 Posted April 29, 2024 (edited) Based on your previous posts, I would expect your cURL options to look like this eventually: --location "https://merchant.revolut.com/api/orders" -H "Revolut-Api-Version: 2023-09-01" -H "Accept: application/json" -H "Content-Type: application/json" -H "Authorization: Bearer ****yourAPIkey****" --data @$jsonData --show-error --trace $trace I would suggest that at least for testing you make yourself a text field and enter your options there exactly as shown above (except for the API key, of course). Then just reference this field in the 'Specify cURL options' dialog of your Insert from URL script step. Edited April 29, 2024 by comment
Terrible Toll Posted April 29, 2024 Author Posted April 29, 2024 404 Not Found - as before Connection failed Error 1631 Thanks - that's a useful method, but gets the same result as before, but with a bit more detail. The trace shows the connection and the certificate checking, but no clue as to the cause of the problem.
comment Posted April 29, 2024 Posted April 29, 2024 (edited) 42 minutes ago, Terrible Toll said: The trace shows the connection and the certificate checking, but no clue as to the cause of the problem. 15 hours ago, comment said: If you compare this to a similar trace produced by Postman or Terminal, you should be able to find what's different (though I wouldn't expect it to be easy). Note that my last post did not say anything about errors. You're not showing us your script and I still don't know whether you have set error capture on and are capturing both Get (LastError) and Get (LastExternalErrorDetail). Edited April 29, 2024 by comment
Terrible Toll Posted April 30, 2024 Author Posted April 30, 2024 Get (Last Error) shows [1631] Connection Failed Get(LastExternalErrorDetail) shows nothing --location "https://merchant.revolut.com/api/orders" --header “Revolut-Api-Version: 2023-09-01” --header “Accept: application/json” --header “Content-Type: application/json” --header “Authorization: Bearer <<APIkey>>” --data @$json --trace $$trace --show-error The big difference with this method of using the contents of a text field to populate the cURL options (above) is that the trace works for the first time (below). It shows the connection is made, but it is hard to see what might be causing the issue. The above code works in Terminal Thanks again for your input. It is revealing much more, but still no success. == Info: Trying 34.117.68.228:443... == Info: Connected to merchant.revolut.com (34.117.68.228) port 443 (#0) == Info: ALPN, offering http/1.1 == Info: Cipher selection: ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA == Info: successfully set certificate verify locations: == Info: CAfile: /Volumes/BirdSeed_HD/Users/anatolebeams/Library/Application Support/FileMaker/FileMaker Pro/19.0/root.pem == Info: CApath: none => Send SSL data, 5 bytes (0x5) 0000: 16 03 01 02 00 ..... == Info: TLSv1.3 (OUT), TLS handshake, Client hello (1): => Send SSL data, 512 bytes (0x200) 0000: 01 00 01 fc 03 03 cb f7 4a 16 aa 8d 6e 1e 40 47 ........J...n.@G 0010: 66 14 c1 7a f8 6c 5c 7f 9a eb 95 5b 48 bc eb 80 f..z.l\....[H... 0020: 30 81 98 35 66 f3 20 9b 26 3d dd 25 37 a2 a2 74 0..5f. .&=.%7..t 0030: d4 21 c3 51 e5 50 c7 a8 3d 23 1f 2d 54 a9 54 9b .!.Q.P..=#.-T.T. 0040: b2 13 54 a5 b2 d0 ed 00 5c 13 02 13 03 13 01 c0 ..T.....\....... 0050: 2f c0 2b c0 30 c0 2c 00 9e 00 a2 00 a3 00 9f c0 /.+.0.,......... 0060: 27 c0 23 c0 13 c0 09 c0 28 c0 24 c0 14 c0 0a 00 '.#.....(.$..... 0070: 67 00 33 00 40 00 6b 00 38 00 39 00 9c 00 9d 00 [email protected]..... 0080: 3c 00 3d 00 2f 00 35 c0 af c0 ad c0 a3 c0 9f c0 <.=./.5......... 0090: ae c0 ac c0 a2 c0 9e 00 6a 00 32 c0 a1 c0 9d c0 ........j.2..... 00a0: a0 c0 9c 00 ff 01 00 01 57 00 00 00 19 00 17 00 ........W....... 00b0: 00 14 6d 65 72 63 68 61 6e 74 2e 72 65 76 6f 6c ..merchant.revol 00c0: 75 74 2e 63 6f 6d 00 0b 00 04 03 00 01 02 00 0a ut.com.......... 00d0: 00 0c 00 0a 00 1d 00 17 00 1e 00 19 00 18 33 74 ..............3t 00e0: 00 00 00 10 00 0b 00 09 08 68 74 74 70 2f 31 2e .........http/1. 00f0: 31 00 16 00 00 00 17 00 00 00 31 00 00 00 0d 00 1.........1..... 0100: 30 00 2e 04 03 05 03 06 03 08 07 08 08 08 09 08 0............... 0110: 0a 08 0b 08 04 08 05 08 06 04 01 05 01 06 01 03 ................ 0120: 03 02 03 03 01 02 01 03 02 02 02 04 02 05 02 06 ................ 0130: 02 00 2b 00 09 08 03 04 03 03 03 02 03 01 00 2d ..+............- 0140: 00 02 01 01 00 33 00 26 00 24 00 1d 00 20 7e 68 .....3.&.$... ~h 0150: ba 17 72 91 37 e2 80 a8 20 4f b6 93 79 f7 cf 55 ..r.7... O..y..U 0160: 6b e6 be 09 d6 d4 f1 44 fd 98 97 dc 4a 5f 00 15 k......D....J_.. 0170: 00 8e 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 0180: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 0190: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 01a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 01b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 01c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 01d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 01e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ 01f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ <= Recv SSL data, 5 bytes (0x5) 0000: 16 03 03 00 7a ....z == Info: TLSv1.3 (IN), TLS handshake, Server hello (2): <= Recv SSL data, 122 bytes (0x7a) 0000: 02 00 00 76 03 03 a8 3a 69 53 18 68 f8 a3 5b 4c ...v...:iS.h..[L 0010: 6a 49 b9 33 52 89 86 fe 8b a7 e6 1c 43 a6 96 43 jI.3R.......C..C 0020: b6 16 43 89 5f fb 20 9b 26 3d dd 25 37 a2 a2 74 ..C._. .&=.%7..t 0030: d4 21 c3 51 e5 50 c7 a8 3d 23 1f 2d 54 a9 54 9b .!.Q.P..=#.-T.T. 0040: b2 13 54 a5 b2 d0 ed 13 02 00 00 2e 00 33 00 24 ..T..........3.$ 0050: 00 1d 00 20 e0 3e fa ef 64 6c a9 0a 67 00 d3 e4 ... .>..dl..g... 0060: 2c 0d ea 9a 75 13 ff b4 a3 a8 e9 8d 47 b5 63 d6 ,...u.......G.c. 0070: d1 83 26 3f 00 2b 00 02 03 04 ..&?.+.... <= Recv SSL data, 5 bytes (0x5) 0000: 14 03 03 00 01 ..... <= Recv SSL data, 5 bytes (0x5) 0000: 17 03 03 0c fe ..... <= Recv SSL data, 1 bytes (0x1) 0000: 16 . == Info: TLSv1.3 (IN), TLS handshake, Encrypted Extensions (8): <= Recv SSL data, 21 bytes (0x15) 0000: 08 00 00 11 00 0f 00 10 00 0b 00 09 08 68 74 74 .............htt 0010: 70 2f 31 2e 31 p/1.1 == Info: TLSv1.3 (IN), TLS handshake, Certificate (11): <= Recv SSL data, 2972 bytes (0xb9c) 0000: 0b 00 0b 98 00 00 0b 94 00 06 be 30 82 06 ba 30 ...........0...0 0010: 82 05 a2 a0 03 02 01 02 02 10 09 0c 41 59 97 63 ............AY.c 0020: 50 c6 e3 32 63 da ff 0f 7e 99 30 0d 06 09 2a 86 P..2c...~.0...*. 0030: 48 86 f7 0d 01 01 0b 05 00 30 59 31 0b 30 09 06 H........0Y1.0.. 0040: 03 55 04 06 13 02 55 53 31 15 30 13 06 03 55 04 .U....US1.0...U. 0050: 0a 13 0c 44 69 67 69 43 65 72 74 20 49 6e 63 31 ...DigiCert Inc1 0060: 33 30 31 06 03 55 04 03 13 2a 44 69 67 69 43 65 301..U...*DigiCe 0070: 72 74 20 47 6c 6f 62 61 6c 20 47 32 20 54 4c 53 rt Global G2 TLS 0080: 20 52 53 41 20 53 48 41 32 35 36 20 32 30 32 30 RSA SHA256 2020 0090: 20 43 41 31 30 1e 17 0d 32 34 30 33 32 37 30 30 CA10...24032700 00a0: 30 30 30 30 5a 17 0d 32 35 30 34 32 37 32 33 35 0000Z..250427235 00b0: 39 35 39 5a 30 4c 31 0b 30 09 06 03 55 04 06 13 959Z0L1.0...U... 00c0: 02 47 42 31 0f 30 0d 06 03 55 04 07 13 06 4c 6f .GB1.0...U....Lo 00d0: 6e 64 6f 6e 31 14 30 12 06 03 55 04 0a 13 0b 52 ndon1.0...U....R 00e0: 65 76 6f 6c 75 74 20 4c 74 64 31 16 30 14 06 03 evolut Ltd1.0... 00f0: 55 04 03 0c 0d 2a 2e 72 65 76 6f 6c 75 74 2e 63 U....*.revolut.c 0100: 6f 6d 30 82 01 22 30 0d 06 09 2a 86 48 86 f7 0d om0.."0...*.H... 0110: 01 01 01 05 00 03 82 01 0f 00 30 82 01 0a 02 82 ..........0..... 0120: 01 01 00 b7 20 32 24 b0 93 a4 bd 5b bc 04 57 69 .... 2$....[..Wi 0130: 0b db 4d e9 f9 4c 65 49 4c 11 55 b1 f4 a7 9f 61 ..M..LeIL.U....a 0140: 33 4c 83 d6 a3 ac 67 ad 55 2a 23 33 f4 d7 2f 56 3L....g.U*#3../V 0150: 83 0f cc a5 ec 95 25 4f e0 e0 fe 77 87 64 8d 95 ......%O...w.d.. 0160: bf c7 23 5d 82 ac 0c 25 59 1a ee 52 96 a8 70 05 ..#]...%Y..R..p. 0170: ed e8 bd 2e df cb d7 69 d9 d9 e9 29 e0 8b 74 01 .......i...)..t. 0180: d8 de ea 59 66 3a 9d 58 75 90 99 8b fd 98 e8 8b ...Yf:.Xu....... 0190: 62 cc 44 b4 d5 8b 33 b8 82 64 db 3d d2 ff b0 66 b.D...3..d.=...f 01a0: c1 fd cc 78 f8 10 b3 3f 1f b0 33 74 ce 23 a3 c9 ...x...?..3t.#.. 01b0: d6 d3 c5 18 88 ad 05 77 8e 75 5c f3 ce fe 68 58 .......w.u\...hX 01c0: e8 80 8f 38 40 76 a3 ff f5 c2 fb 45 33 6c 12 c6 [email protected].. 01d0: a2 e0 4b d7 2c 69 38 71 25 2a 97 dd 45 79 7d a6 ..K.,i8q%*..Ey}. 01e0: f0 df e1 4f fc ef b5 4e 34 11 59 45 61 e6 95 b0 ...O...N4.YEa... 01f0: c4 93 42 5a ba 46 88 cf 5c e1 be 9a 08 b5 89 f3 ..BZ.F..\....... 0200: 6e c4 34 41 cf 25 b8 54 ec c3 10 d0 3e f0 9e e2 n.4A.%.T....>... 0210: 13 37 fb 23 04 6f a4 65 98 62 ac 54 0c ca d2 0c .7.#.o.e.b.T.... 0220: 13 65 91 02 03 01 00 01 a3 82 03 89 30 82 03 85 .e..........0... 0230: 30 1f 06 03 55 1d 23 04 18 30 16 80 14 74 85 80 0...U.#..0...t.. 0240: c0 66 c7 df 37 de cf bd 29 37 aa 03 1d be ed cd .f..7...)7...... 0250: 17 30 1d 06 03 55 1d 0e 04 16 04 14 a8 2e f0 33 .0...U.........3 0260: 6b f1 10 11 4d c6 2d 2a 64 92 e9 2d 95 d1 52 d1 k...M.-*d..-..R. 0270: 30 18 06 03 55 1d 11 04 11 30 0f 82 0d 2a 2e 72 0...U....0...*.r 0280: 65 76 6f 6c 75 74 2e 63 6f 6d 30 3e 06 03 55 1d evolut.com0>..U. 0290: 20 04 37 30 35 30 33 06 06 67 81 0c 01 02 02 30 .70503..g.....0 02a0: 29 30 27 06 08 2b 06 01 05 05 07 02 01 16 1b 68 )0'..+.........h 02b0: 74 74 70 3a 2f 2f 77 77 77 2e 64 69 67 69 63 65 ttp://www.digice 02c0: 72 74 2e 63 6f 6d 2f 43 50 53 30 0e 06 03 55 1d rt.com/CPS0...U. 02d0: 0f 01 01 ff 04 04 03 02 05 a0 30 1d 06 03 55 1d ..........0...U. 02e0: 25 04 16 30 14 06 08 2b 06 01 05 05 07 03 01 06 %..0...+........ 02f0: 08 2b 06 01 05 05 07 03 02 30 81 9f 06 03 55 1d .+.......0....U. 0300: 1f 04 81 97 30 81 94 30 48 a0 46 a0 44 86 42 68 ....0..0H.F.D.Bh 0310: 74 74 70 3a 2f 2f 63 72 6c 33 2e 64 69 67 69 63 ttp://crl3.digic 0320: 65 72 74 2e 63 6f 6d 2f 44 69 67 69 43 65 72 74 ert.com/DigiCert 0330: 47 6c 6f 62 61 6c 47 32 54 4c 53 52 53 41 53 48 GlobalG2TLSRSASH 0340: 41 32 35 36 32 30 32 30 43 41 31 2d 31 2e 63 72 A2562020CA1-1.cr 0350: 6c 30 48 a0 46 a0 44 86 42 68 74 74 70 3a 2f 2f l0H.F.D.Bhttp:// 0360: 63 72 6c 34 2e 64 69 67 69 63 65 72 74 2e 63 6f crl4.digicert.co 0370: 6d 2f 44 69 67 69 43 65 72 74 47 6c 6f 62 61 6c m/DigiCertGlobal 0380: 47 32 54 4c 53 52 53 41 53 48 41 32 35 36 32 30 G2TLSRSASHA25620 0390: 32 30 43 41 31 2d 31 2e 63 72 6c 30 81 87 06 08 20CA1-1.crl0.... 03a0: 2b 06 01 05 05 07 01 01 04 7b 30 79 30 24 06 08 +........{0y0$.. 03b0: 2b 06 01 05 05 07 30 01 86 18 68 74 74 70 3a 2f +.....0...http:/ 03c0: 2f 6f 63 73 70 2e 64 69 67 69 63 65 72 74 2e 63 /ocsp.digicert.c 03d0: 6f 6d 30 51 06 08 2b 06 01 05 05 07 30 02 86 45 om0Q..+.....0..E 03e0: 68 74 74 70 3a 2f 2f 63 61 63 65 72 74 73 2e 64 http://cacerts.d 03f0: 69 67 69 63 65 72 74 2e 63 6f 6d 2f 44 69 67 69 igicert.com/Digi 0400: 43 65 72 74 47 6c 6f 62 61 6c 47 32 54 4c 53 52 CertGlobalG2TLSR 0410: 53 41 53 48 41 32 35 36 32 30 32 30 43 41 31 2d SASHA2562020CA1- 0420: 31 2e 63 72 74 30 0c 06 03 55 1d 13 01 01 ff 04 1.crt0...U...... 0430: 02 30 00 30 82 01 7e 06 0a 2b 06 01 04 01 d6 79 .0.0..~..+.....y 0440: 02 04 02 04 82 01 6e 04 82 01 6a 01 68 00 75 00 ......n...j.h.u. 0450: 4e 75 a3 27 5c 9a 10 c3 38 5b 6c d4 df 3f 52 eb Nu.'\...8[l..?R. 0460: 1d f0 e0 8e 1b 8d 69 c0 b1 fa 64 b1 62 9a 39 df ......i...d.b.9. 0470: 00 00 01 8e 80 4d b6 6c 00 00 04 03 00 46 30 44 .....M.l.....F0D 0480: 02 20 31 bf fc 1b a9 63 2a 96 05 e0 58 c3 74 06 . 1....c*...X.t. 0490: a4 24 04 98 94 b8 b7 01 bf b1 19 9d f6 01 f0 c9 .$.............. 04a0: f3 63 02 20 5b ad ac 61 67 c4 05 99 8f 73 ee d3 .c. [..ag....s.. 04b0: 95 38 d9 dc 01 58 2e 5d 46 b0 5a e7 74 1c b5 cf .8...X.]F.Z.t... 04c0: d2 2d 22 83 00 77 00 7d 59 1e 12 e1 78 2a 7b 1c .-"..w.}Y...x*{. 04d0: 61 67 7c 5e fd f8 d0 87 5c 14 a0 4e 95 9e b9 03 ag|^....\..N.... 04e0: 2f d9 0e 8c 2e 79 b8 00 00 01 8e 80 4d b6 a4 00 /....y......M... 04f0: 00 04 03 00 48 30 46 02 21 00 e7 ff 6a b9 31 4b ....H0F.!...j.1K 0500: ef fa b3 a6 8a 8f 52 78 e1 f9 be 1d ed 93 c9 c3 ......Rx........ 0510: 20 f4 45 44 39 6f 17 59 7d f1 02 21 00 bd 33 fc .ED9o.Y}..!..3. 0520: 93 26 9e 45 28 d9 df b5 98 79 83 e8 4f c9 25 31 .&.E(....y..O.%1 0530: 2e fb 88 f4 5d 8b 78 47 1b 2e e1 55 21 00 76 00 ....].xG...U!.v. 0540: e6 d2 31 63 40 77 8c c1 10 41 06 d7 71 b9 ce c1 [email protected]... 0550: d2 40 f6 96 84 86 fb ba 87 32 1d fd 1e 37 8e 50 [email protected] 0560: 00 00 01 8e 80 4d b6 b3 00 00 04 03 00 47 30 45 .....M.......G0E 0570: 02 20 06 d4 c4 6f 21 7d 85 06 5f 19 7c a2 0c fb . ...o!}.._.|... 0580: a9 26 f7 9a 6f 4b 51 df b4 df 27 5b e6 0e 9a 47 .&..oKQ...'[...G 0590: 7a 53 02 21 00 e3 e2 b7 6d c4 fa ff bf 69 7a a2 zS.!....m....iz. 05a0: e7 17 49 86 0e 4d 44 fa ea 7e b4 74 5a 81 99 ee ..I..MD..~.tZ... 05b0: 87 ac d2 4d dd 30 0d 06 09 2a 86 48 86 f7 0d 01 ...M.0...*.H.... 05c0: 01 0b 05 00 03 82 01 01 00 86 88 4c 99 da 8b ee ...........L.... 05d0: f9 3b 1a 87 34 26 ab 61 da dd 31 d0 c6 45 f6 2f .;..4&.a..1..E./ 05e0: b4 35 1e bd 78 c2 3b 6a c3 24 d6 dc 16 ca a4 66 .5..x.;j.$.....f 05f0: 54 6d 5d 4d fa 50 25 25 ec 62 ca 8e 21 29 a8 76 Tm]M.P%%.b..!).v 0600: 05 92 13 b2 fa b1 74 67 4f 5e 3b 48 98 f9 25 7c ......tgO^;H..%| 0610: 6c dc c1 3f 5c 7d dc 30 44 5f 91 85 41 e0 27 22 l..?\}.0D_..A.'" 0620: 9a 5e cc e0 bf b3 65 88 eb 70 fb 8a 0b 2a b5 6f .^....e..p...*.o 0630: 61 81 df 24 c8 a2 14 f8 5e 88 10 d5 66 da 57 7c a..$....^...f.W| 0640: 73 c9 3d 87 3d 31 fc 98 11 69 20 57 a0 2c 5e aa s.=.=1...i W.,^. 0650: dc 8a b6 04 09 13 f2 37 71 9b 5c 1f f3 eb a7 f7 .......7q.\..... 0660: 26 20 65 f6 d5 3a f9 28 df c8 c6 ac ed 42 16 09 & e..:.(.....B.. 0670: dd a6 ae 73 5d 1c a7 17 b0 a9 67 10 c5 31 b6 32 ...s].....g..1.2 0680: 1d 67 a8 ee be 5b 23 63 64 47 85 df 0c f1 82 54 .g...[#cdG.....T 0690: a0 8d f1 f3 8c 56 ef e7 7b b0 28 5a 58 eb e9 c8 .....V..{.(ZX... 06a0: 27 3c f9 7a c2 4a 65 e0 df e4 52 af 01 ba 35 f4 '<.z.Je...R...5. 06b0: 02 c8 eb d1 25 99 5e c7 2b 33 f5 c8 5e 35 88 a2 ....%.^.+3..^5.. 06c0: da b0 80 00 01 6a 4d ec 9a 00 00 00 04 cc 30 82 .....jM.......0. 06d0: 04 c8 30 82 03 b0 a0 03 02 01 02 02 10 0c f5 bd ..0............. 06e0: 06 2b 56 02 f4 7a b8 50 2c 23 cc f0 66 30 0d 06 .+V..z.P,#..f0.. 06f0: 09 2a 86 48 86 f7 0d 01 01 0b 05 00 30 61 31 0b .*.H........0a1. 0700: 30 09 06 03 55 04 06 13 02 55 53 31 15 30 13 06 0...U....US1.0.. 0710: 03 55 04 0a 13 0c 44 69 67 69 43 65 72 74 20 49 .U....DigiCert I 0720: 6e 63 31 19 30 17 06 03 55 04 0b 13 10 77 77 77 nc1.0...U....www 0730: 2e 64 69 67 69 63 65 72 74 2e 63 6f 6d 31 20 30 .digicert.com1 0 0740: 1e 06 03 55 04 03 13 17 44 69 67 69 43 65 72 74 ...U....DigiCert 0750: 20 47 6c 6f 62 61 6c 20 52 6f 6f 74 20 47 32 30 Global Root G20 0760: 1e 17 0d 32 31 30 33 33 30 30 30 30 30 30 30 5a ...210330000000Z 0770: 17 0d 33 31 30 33 32 39 32 33 35 39 35 39 5a 30 ..310329235959Z0 0780: 59 31 0b 30 09 06 03 55 04 06 13 02 55 53 31 15 Y1.0...U....US1. 0790: 30 13 06 03 55 04 0a 13 0c 44 69 67 69 43 65 72 0...U....DigiCer 07a0: 74 20 49 6e 63 31 33 30 31 06 03 55 04 03 13 2a t Inc1301..U...* 07b0: 44 69 67 69 43 65 72 74 20 47 6c 6f 62 61 6c 20 DigiCert Global 07c0: 47 32 20 54 4c 53 20 52 53 41 20 53 48 41 32 35 G2 TLS RSA SHA25 07d0: 36 20 32 30 32 30 20 43 41 31 30 82 01 22 30 0d 6 2020 CA10.."0. 07e0: 06 09 2a 86 48 86 f7 0d 01 01 01 05 00 03 82 01 ..*.H........... 07f0: 0f 00 30 82 01 0a 02 82 01 01 00 cc f7 10 62 4f ..0...........bO 0800: a6 bb 63 6f ed 90 52 56 c5 6d 27 7b 7a 12 56 8a ..co..RV.m'{z.V. 0810: f1 f4 f9 d6 e7 e1 8f bd 95 ab f2 60 41 15 70 db ...........`A.p. 0820: 12 00 fa 27 0a b5 57 38 5b 7d b2 51 93 71 95 0e ...'..W8[}.Q.q.. 0830: 6a 41 94 5b 35 1b fa 7b fa bb c5 be 24 30 fe 56 jA.[5..{....$0.V 0840: ef c4 f3 7d 97 e3 14 f5 14 4d cb a7 10 f2 16 ea ...}.....M...... 0850: ab 22 f0 31 22 11 61 69 90 26 ba 78 d9 97 1f e3 .".1".ai.&.x.... 0860: 7d 66 ab 75 44 95 73 c8 ac ff ef 5d 0a 8a 59 43 }f.uD.s....]..YC 0870: e1 ac b2 3a 0f f3 48 fc d7 6b 37 c1 63 dc de 46 ...:..H..k7.c..F 0880: d6 db 45 fe 7d 23 fd 90 e8 51 07 1e 51 a3 5f ed ..E.}#...Q..Q._. 0890: 49 46 54 7f 2c 88 c5 f4 13 9c 97 15 3c 03 e8 a1 IFT.,.......<... 08a0: 39 dc 69 0c 32 c1 af 16 57 4c 94 47 42 7c a2 c8 9.i.2...WL.GB|.. 08b0: 9c 7d e6 d4 4d 54 af 42 99 a8 c1 04 c2 77 9c d6 .}..MT.B.....w.. 08c0: 48 e4 ce 11 e0 2a 80 99 f0 43 70 cf 3f 76 6b d1 H....*...Cp.?vk. 08d0: 4c 49 ab 24 5e c2 0d 82 fd 46 a8 ab 6c 93 cc 62 LI.$^....F..l..b 08e0: 52 42 75 92 f8 9a fa 5e 5e b2 b0 61 e5 1f 1f b9 RBu....^^..a.... 08f0: 7f 09 98 e8 3d fa 83 7f 47 69 a1 02 03 01 00 01 ....=...Gi...... 0900: a3 82 01 82 30 82 01 7e 30 12 06 03 55 1d 13 01 ....0..~0...U... 0910: 01 ff 04 08 30 06 01 01 ff 02 01 00 30 1d 06 03 ....0.......0... 0920: 55 1d 0e 04 16 04 14 74 85 80 c0 66 c7 df 37 de U......t...f..7. 0930: cf bd 29 37 aa 03 1d be ed cd 17 30 1f 06 03 55 ..)7.......0...U 0940: 1d 23 04 18 30 16 80 14 4e 22 54 20 18 95 e6 e3 .#..0...N"T .... 0950: 6e e6 0f fa fa b9 12 ed 06 17 8f 39 30 0e 06 03 n..........90... 0960: 55 1d 0f 01 01 ff 04 04 03 02 01 86 30 1d 06 03 U...........0... 0970: 55 1d 25 04 16 30 14 06 08 2b 06 01 05 05 07 03 U.%..0...+...... 0980: 01 06 08 2b 06 01 05 05 07 03 02 30 76 06 08 2b ...+.......0v..+ 0990: 06 01 05 05 07 01 01 04 6a 30 68 30 24 06 08 2b ........j0h0$..+ 09a0: 06 01 05 05 07 30 01 86 18 68 74 74 70 3a 2f 2f .....0...http:// 09b0: 6f 63 73 70 2e 64 69 67 69 63 65 72 74 2e 63 6f ocsp.digicert.co 09c0: 6d 30 40 06 08 2b 06 01 05 05 07 30 02 86 34 68 m0@..+.....0..4h 09d0: 74 74 70 3a 2f 2f 63 61 63 65 72 74 73 2e 64 69 ttp://cacerts.di 09e0: 67 69 63 65 72 74 2e 63 6f 6d 2f 44 69 67 69 43 gicert.com/DigiC 09f0: 65 72 74 47 6c 6f 62 61 6c 52 6f 6f 74 47 32 2e ertGlobalRootG2. 0a00: 63 72 74 30 42 06 03 55 1d 1f 04 3b 30 39 30 37 crt0B..U...;0907 0a10: a0 35 a0 33 86 31 68 74 74 70 3a 2f 2f 63 72 6c .5.3.1http://crl 0a20: 33 2e 64 69 67 69 63 65 72 74 2e 63 6f 6d 2f 44 3.digicert.com/D 0a30: 69 67 69 43 65 72 74 47 6c 6f 62 61 6c 52 6f 6f igiCertGlobalRoo 0a40: 74 47 32 2e 63 72 6c 30 3d 06 03 55 1d 20 04 36 tG2.crl0=..U. .6 0a50: 30 34 30 0b 06 09 60 86 48 01 86 fd 6c 02 01 30 040...`.H...l..0 0a60: 07 06 05 67 81 0c 01 01 30 08 06 06 67 81 0c 01 ...g....0...g... 0a70: 02 01 30 08 06 06 67 81 0c 01 02 02 30 08 06 06 ..0...g.....0... 0a80: 67 81 0c 01 02 03 30 0d 06 09 2a 86 48 86 f7 0d g.....0...*.H... 0a90: 01 01 0b 05 00 03 82 01 01 00 90 f1 70 cb 28 97 ............p.(. 0aa0: 69 97 7c 74 fd c0 fa 26 7b 53 ab ad cd 65 fd ba i.|t...&{S...e.. 0ab0: 9c 06 9c 8a d7 5a 43 87 ed 4d 4c 56 5f ad c1 c5 .....ZC..MLV_... 0ac0: b5 05 20 2e 59 d1 ff 4a f5 a0 2a d8 b0 95 ad c9 .. .Y..J..*..... 0ad0: 2e 4a 3b d7 a7 f6 6f 88 29 fc 30 3f 24 84 bb c3 .J;...o.).0?$... 0ae0: b7 7b 93 07 2c af 87 6b 76 33 ed 00 55 52 b2 59 .{..,..kv3..UR.Y 0af0: 9e e4 b9 d0 f3 df e7 0f fe dd f8 c4 b9 10 72 81 ..............r. 0b00: 09 04 5f cf 97 9e 2e 32 75 8e cf 9a 58 d2 57 31 .._....2u...X.W1 0b10: 7e 37 01 81 b2 66 6d 29 1a b1 66 09 6d d1 6e 90 ~7...fm)..f.m.n. 0b20: f4 b9 fa 2f 01 14 c5 5c 56 64 01 d9 7d 87 a8 38 .../...\Vd..}..8 0b30: 53 9f 8b 5d 46 6d 5c c6 27 84 81 d4 7e 8c 8c a3 S..]Fm\.'...~... 0b40: 9b 52 e7 c6 88 ec 37 7c 2a fb f0 55 5a 38 72 10 .R....7|*..UZ8r. 0b50: d8 00 13 cf 4c 73 db aa 37 35 a8 29 81 69 9c 76 ....Ls..75.).i.v 0b60: bc de 18 7b 90 d4 ca cf ef 67 03 fd 04 5a 21 16 ...{.....g...Z!. 0b70: b1 ff ea 3f df dc 82 f5 eb f4 59 92 23 0d 24 2a ...?......Y.#.$* 0b80: 95 25 4c ca a1 91 e6 d4 b7 ac 87 74 b3 f1 6d a3 .%L........t..m. 0b90: 99 db f9 d5 bd 84 40 9f 07 98 00 00 ......@..... == Info: TLSv1.3 (IN), TLS handshake, CERT verify (15): <= Recv SSL data, 264 bytes (0x108) 0000: 0f 00 01 04 08 04 01 00 26 b9 e5 17 a6 22 ac 5f ........&...."._ 0010: dc ea 57 3f 38 2f 4c 1a 5b 94 b2 b7 29 95 a1 b7 ..W?8/L.[...)... 0020: 9e 9d f1 26 d0 9d fb 60 e0 da c4 1a 8d c6 d6 99 ...&...`........ 0030: fb 2c 1f 3f 51 4d 93 cd f4 32 dc fd 9f 81 2f bf .,.?QM...2..../. 0040: 56 cd 78 22 ee 38 12 51 69 2c fb 79 19 96 5c 6b V.x".8.Qi,.y..\k 0050: 2b 06 c3 2b 16 f3 aa 6f b7 64 d0 5a 0d ff 4e 12 +..+...o.d.Z..N. 0060: f6 5b c2 5e fb ea 2f 9f a0 a9 62 bb 64 e4 99 6d .[.^../...b.d..m 0070: 90 6d a5 c1 9e 5a f0 32 5a 80 b5 9c 91 e0 e9 3c .m...Z.2Z......< 0080: 10 f7 ed 28 f8 ce 5d c1 12 cb c6 95 e6 53 03 2a ...(..]......S.* 0090: e9 4a e5 56 9c d7 eb 51 16 de c0 b9 be 96 fa 2e .J.V...Q........ 00a0: 9f 02 fb 45 2b 55 e3 0b d7 a7 cc 7a fa 52 7a 3e ...E+U.....z.Rz> 00b0: 51 51 82 f9 7c a9 65 1b df b5 b1 bb a3 42 11 62 QQ..|.e......B.b 00c0: de dc 13 9e bb 2c 1d 2a c7 4d ff 97 d4 bc 7d 0f .....,.*.M....}. 00d0: d4 f6 6a 11 b5 6e 8d be 82 06 40 3c bf 9c 7e fb ..j..n....@<..~. 00e0: 63 fa 48 12 f9 7c b3 1b 98 b6 b7 c5 e2 ad 30 fa c.H..|........0. 00f0: fa 5e f9 d1 13 d0 68 d3 fb af 07 e2 0a bd d9 71 .^....h........q 0100: fd 43 91 6c 8a fe 92 e7 .C.l.... == Info: TLSv1.3 (IN), TLS handshake, Finished (20): <= Recv SSL data, 52 bytes (0x34) 0000: 14 00 00 30 e0 e0 80 f3 4e 3a dc 9a f2 a7 b9 cf ...0....N:...... 0010: fc 7a d6 9e 45 50 4f 3e 28 12 02 75 98 2e 11 24 .z..EPO>(..u...$ 0020: 14 ae 35 7d fd ae 42 4a f1 45 1c 19 70 fc 6f 9b ..5}..BJ.E..p.o. 0030: a0 af fc b5 .... => Send SSL data, 5 bytes (0x5) 0000: 14 03 03 00 01 ..... == Info: TLSv1.3 (OUT), TLS change cipher, Change cipher spec (1): => Send SSL data, 1 bytes (0x1) 0000: 01 . => Send SSL data, 5 bytes (0x5) 0000: 17 03 03 00 45 ....E => Send SSL data, 1 bytes (0x1) 0000: 16 . == Info: TLSv1.3 (OUT), TLS handshake, Finished (20): => Send SSL data, 52 bytes (0x34) 0000: 14 00 00 30 fb 33 44 20 37 b5 60 c4 af 39 db 85 ...0.3D 7.`..9.. 0010: b4 e6 01 db ea b7 fd 76 6b 76 8e 78 36 f5 45 7b .......vkv.x6.E{ 0020: 85 2e 39 f6 2c 9f a9 f1 ee 66 a2 07 f8 3a 32 9f ..9.,....f...:2. 0030: 4d 49 c9 32 MI.2 == Info: SSL connection using TLSv1.3 / TLS_AES_256_GCM_SHA384 == Info: ALPN, server accepted to use http/1.1 == Info: Server certificate: == Info: subject: C=GB; L=London; O=Revolut Ltd; CN=*.revolut.com == Info: start date: Mar 27 00:00:00 2024 GMT == Info: expire date: Apr 27 23:59:59 2025 GMT == Info: subjectAltName: host "merchant.revolut.com" matched cert's "*.revolut.com" == Info: issuer: C=US; O=DigiCert Inc; CN=DigiCert Global G2 TLS RSA SHA256 2020 CA1 == Info: SSL certificate verify ok. => Send SSL data, 5 bytes (0x5) 0000: 17 03 03 00 fc ..... => Send SSL data, 1 bytes (0x1) 0000: 17 . => Send header, 200 bytes (0xc8) 0000: 50 4f 53 54 20 2f 61 70 69 2f 6f 72 64 65 72 73 POST /api/orders 0010: 2f 20 48 54 54 50 2f 31 2e 31 0d 0a 48 6f 73 74 / HTTP/1.1..Host 0020: 3a 20 6d 65 72 63 68 61 6e 74 2e 72 65 76 6f 6c : merchant.revol 0030: 75 74 2e 63 6f 6d 0d 0a 55 73 65 72 2d 41 67 65 ut.com..User-Age 0040: 6e 74 3a 20 46 69 6c 65 4d 61 6b 65 72 2f 31 39 nt: FileMaker/19 0050: 2e 33 0d 0a 41 63 63 65 70 74 3a 20 2a 2f 2a 0d .3..Accept: */*. 0060: 0a 41 63 63 65 70 74 2d 45 6e 63 6f 64 69 6e 67 .Accept-Encoding 0070: 3a 20 64 65 66 6c 61 74 65 2c 20 67 7a 69 70 0d : deflate, gzip. 0080: 0a 43 6f 6e 74 65 6e 74 2d 4c 65 6e 67 74 68 3a .Content-Length: 0090: 20 33 35 0d 0a 43 6f 6e 74 65 6e 74 2d 54 79 70 35..Content-Typ 00a0: 65 3a 20 61 70 70 6c 69 63 61 74 69 6f 6e 2f 78 e: application/x 00b0: 2d 77 77 77 2d 66 6f 72 6d 2d 75 72 6c 65 6e 63 -www-form-urlenc 00c0: 6f 64 65 64 0d 0a 0d 0a oded.... => Send data, 35 bytes (0x23) 0000: 7b 22 61 6d 6f 75 6e 74 22 3a 22 36 30 30 30 30 {"amount":"60000 0010: 22 2c 22 63 75 72 72 65 6e 63 79 22 3a 22 45 55 ","currency":"EU 0020: 52 22 7d R"} <= Recv SSL data, 5 bytes (0x5) 0000: 17 03 03 02 35 ....5 <= Recv SSL data, 1 bytes (0x1) 0000: 16 . == Info: TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): <= Recv SSL data, 274 bytes (0x112) 0000: 04 00 01 0e 00 02 a3 00 fa 05 65 bb 01 00 00 fc ..........e..... 0010: 02 05 d6 ad fb 61 fd 8f 19 5b 7a 78 a0 c6 63 7e .....a...[zx..c~ 0020: 32 c8 b0 43 25 4b c6 ce 20 5d bd 41 b0 a2 c2 1e 2..C%K.. ].A.... 0030: 6e 1d 07 47 1e 43 08 c3 49 39 47 35 30 58 5b 18 n..G.C..I9G50X[. 0040: 98 1e 02 6f 24 cb a6 6e 8e f1 f3 30 80 6b e1 74 ...o$..n...0.k.t 0050: cb 36 17 d2 b6 3c da 12 70 49 07 25 db d2 ae 6f .6...<..pI.%...o 0060: 64 28 59 05 75 35 71 14 aa f8 52 00 47 a0 f7 52 d(Y.u5q...R.G..R 0070: 85 86 3e 43 de 23 c2 81 b0 92 dd 5f ae 57 d9 b1 ..>C.#....._.W.. 0080: 35 a2 08 d1 3e 95 5c 25 77 1c 2c 70 d9 78 1c be 5...>.\%w.,p.x.. 0090: b3 e8 ef d8 04 78 0d 77 c8 08 c7 d5 64 41 1b 78 .....x.w....dA.x 00a0: 46 e5 7d 91 08 56 ea 63 6f 8c 9e 40 cd d1 7f 70 F.}[email protected] 00b0: 66 19 48 66 56 3d d7 13 aa e2 78 bc ae d5 03 5e f.HfV=....x....^ 00c0: 6a 9c 82 1b c6 38 96 3f 8f c2 8d d8 3e 75 58 a1 j....8.?....>uX. 00d0: 3c 53 13 02 e9 a4 49 9c 73 d6 f6 c2 9c df 65 83 <S....I.s.....e. 00e0: a3 9d db 42 89 91 c5 03 63 97 1c 1a 59 e4 7f 02 ...B....c...Y... 00f0: 19 c8 b7 be f3 99 4d 4a 95 1a 67 71 4e e5 1c d3 ......MJ..gqN... 0100: 70 4c 48 52 77 6e 4f f3 14 b8 e7 8b 00 04 5a 5a pLHRwnO.......ZZ 0110: 00 00 .. == Info: TLSv1.3 (IN), TLS handshake, Newsession Ticket (4): <= Recv SSL data, 274 bytes (0x112) 0000: 04 00 01 0e 00 02 a3 00 08 b3 98 92 01 01 00 fc ................ 0010: 02 05 d6 ad fb 61 fd 8f 19 5b 7a 78 a0 c6 63 7e .....a...[zx..c~ 0020: 3d 67 d0 42 08 3e c7 af 33 c6 a8 9f 97 dc 6f 34 =g.B.>..3.....o4 0030: c5 0d 29 72 c5 52 6f a0 93 f3 29 e5 e4 92 fa 35 ..)r.Ro...)....5 0040: 95 32 5d 89 19 08 fc 5d d2 26 ff 13 83 3f fe 65 .2]....].&...?.e 0050: b2 74 1f 4a a0 7a 98 77 8e 4e 66 05 57 55 db cf .t.J.z.w.Nf.WU.. 0060: aa 06 37 3d 8b 54 5f 45 d5 6f e9 39 fb 33 00 29 ..7=.T_E.o.9.3.) 0070: 38 18 52 bf a4 47 50 af 4f 7d 76 ea 55 20 b7 55 8.R..GP.O}v.U .U 0080: 4d 72 8c 1f 94 33 94 6e 0b 7e 74 66 14 21 a8 df Mr...3.n.~tf.!.. 0090: 72 fb 7f ee 32 fa da 00 75 f1 fd 7b ae 81 7b b1 r...2...u..{..{. 00a0: a5 b7 47 06 7e b3 6f 9c 17 de 25 4c 7a c1 d7 9f ..G.~.o...%Lz... 00b0: 7a 35 d4 e1 73 24 ef 0c cb ae 3c 5d 50 21 a7 0a z5..s$....<]P!.. 00c0: 61 60 3c da bb 01 ef 1f af 1c bb 92 bf 0e ce 57 a`<............W 00d0: af a3 24 da 8b df 21 fe 20 cb 50 4b 92 12 55 cb ..$...!. .PK..U. 00e0: 4c c7 cf d3 4f 06 e5 a7 68 21 8f 8e 38 32 31 c8 L...O...h!..821. 00f0: 54 cb 5e 38 0d 41 99 4d 2d 59 86 b8 b6 36 fe 68 T.^8.A.M-Y...6.h 0100: 68 4c 48 52 29 d3 e1 cf 7d f2 fd e6 00 04 5a 5a hLHR)...}.....ZZ 0110: 00 00 .. == Info: old SSL session ID is stale, removing <= Recv SSL data, 5 bytes (0x5) 0000: 17 03 03 01 4c ....L <= Recv SSL data, 1 bytes (0x1) 0000: 17 . == Info: Mark bundle as not supporting multiuse <= Recv header, 24 bytes (0x18) 0000: 48 54 54 50 2f 31 2e 31 20 34 30 34 20 4e 6f 74 HTTP/1.1 404 Not 0010: 20 46 6f 75 6e 64 0d 0a Found.. <= Recv header, 37 bytes (0x25) 0000: 44 61 74 65 3a 20 54 75 65 2c 20 33 30 20 41 70 Date: Tue, 30 Ap 0010: 72 20 32 30 32 34 20 32 31 3a 33 35 3a 34 36 20 r 2024 21:35:46 0020: 47 4d 54 0d 0a GMT.. <= Recv header, 26 bytes (0x1a) 0000: 72 65 71 75 65 73 74 2d 69 64 3a 20 44 56 46 47 request-id: DVFG 0010: 4c 4b 34 39 4f 41 37 32 0d 0a LK49OA72.. <= Recv header, 39 bytes (0x27) 0000: 43 6f 6e 74 65 6e 74 2d 54 79 70 65 3a 20 74 65 Content-Type: te 0010: 78 74 2f 68 74 6d 6c 3b 63 68 61 72 73 65 74 3d xt/html;charset= 0020: 75 74 66 2d 38 0d 0a utf-8.. <= Recv header, 28 bytes (0x1c) 0000: 54 72 61 6e 73 66 65 72 2d 45 6e 63 6f 64 69 6e Transfer-Encodin 0010: 67 3a 20 63 68 75 6e 6b 65 64 0d 0a g: chunked.. <= Recv header, 33 bytes (0x21) 0000: 53 65 72 76 65 72 3a 20 4a 65 74 74 79 28 39 2e Server: Jetty(9. 0010: 34 2e 35 32 2e 76 32 30 32 33 30 38 32 33 29 0d 4.52.v20230823). 0020: 0a . <= Recv header, 17 bytes (0x11) 0000: 56 69 61 3a 20 31 2e 31 20 67 6f 6f 67 6c 65 0d Via: 1.1 google. 0010: 0a . <= Recv header, 57 bytes (0x39) 0000: 41 6c 74 2d 53 76 63 3a 20 68 33 3d 22 3a 34 34 Alt-Svc: h3=":44 0010: 33 22 3b 20 6d 61 3d 32 35 39 32 30 30 30 2c 68 3"; ma=2592000,h 0020: 33 2d 32 39 3d 22 3a 34 34 33 22 3b 20 6d 61 3d 3-29=":443"; ma= 0030: 32 35 39 32 30 30 30 0d 0a 2592000.. <= Recv header, 2 bytes (0x2) 0000: 0d 0a .. <= Recv data, 52 bytes (0x34) 0000: 33 30 0d 0a 3c 68 74 6d 6c 3e 3c 62 6f 64 79 3e 30..<html><body> 0010: 3c 68 32 3e 34 30 34 20 4e 6f 74 20 66 6f 75 6e <h2>404 Not foun 0020: 64 3c 2f 68 32 3e 3c 2f 62 6f 64 79 3e 3c 2f 68 d</h2></body></h 0030: 74 6d 6c 3e tml> <= Recv SSL data, 5 bytes (0x5) 0000: 17 03 03 00 18 ..... <= Recv SSL data, 1 bytes (0x1) 0000: 17 . <= Recv data, 7 bytes (0x7) 0000: 0d 0a 30 0d 0a 0d 0a ..0.... == Info: Connection #0 to host merchant.revolut.com left intact
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now