From eb90480c014d1d012bc62004522715ec9e47e6b9 Mon Sep 17 00:00:00 2001 From: kova Date: Thu, 9 May 2024 18:56:08 -0700 Subject: [PATCH] Fix url issue --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 11120a5..98292ce 100644 --- a/README.md +++ b/README.md @@ -288,7 +288,7 @@ Tutorial video https://www.youtube.com/watch?v=ENRaNPPYJbc Send HTTP requests to URLs securely without leaking the URL in your application. You should definitely use if you want to send requests to SellerAPI from your application, otherwise if you don't use you'll be leaking your seller key to everyone. And then someone can mess up your application. ```cpp -std::string resp = KeyAuthApp.webhook("Sh1j25S5iX", "&mak=best&debug=1"); +std::string resp = KeyAuthApp.webhook("Sh1j25S5iX", "?mak=best&debug=1"); if (!KeyAuthApp.data.success) // check whether webhook request sent correctly { std::cout << skCrypt("\n\n Status: ") << KeyAuthApp.data.message;