From 22e11ec897e19b4d7e79742957889a0894b8fe5c Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Sun, 15 Dec 2024 15:45:35 -0500 Subject: [PATCH] request.form --- services/web/project/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/services/web/project/__init__.py b/services/web/project/__init__.py index 0876149..9a52ad3 100644 --- a/services/web/project/__init__.py +++ b/services/web/project/__init__.py @@ -311,13 +311,14 @@ def account_payments(current_user): @token_required def myproduct(current_user): product_id = request.form.get("product_id") + print(request.form) if not product_id: return { "message": "Please provide product_id", "data": None, "error": "Bad request" }, 400 - + print(product_id) myproduct_data = { "myproduct_uid":"",