hi
is it possible to make http request in server script?
if possible then how?
thanks
hi
is it possible to make http request in server script?
if possible then how?
thanks
Make a GET request.
Example: frappe.make_get_request('https://example.com')
Make a POST request.
Example: frappe.make_post_request('https://example.com', data={'username: 'test'})
you can refer the documentation
https://frappeframework.com/docs/v14/user/en/desk/scripting/script-api
thank you