What is your goal?
Hello. I am working on creating scenarios for downloading images from Lark Base and sending them via Telegram through a webhook.
What is the problem & what have you tried?
However, I am encountering an error as shown in the image. Based on the configuration of those modules, I don’t know where I went wrong.
I have tried updating the App Secret in the module to see if it would work, but it still didn’t.
Error messages or input/output bundles
This is the error message:
DataError
Bad Request
null
Create public scenario page
Screenshots (scenario flow, module settings, errors)
Can you show me the mapping you are doing in your http module?
Hello. Thank you for your concern. I will send you the images. Please take a look.
HTTP[10]
HTTP[8]
Bad Request on an HTTP module usually means the request is reaching the API, but something in the request is invalid.
From your screenshot, the best place to check is the HTTP module setup itself URL, headers, body, and especially any mapped values coming from the iterator. If one required field is empty or in the wrong format, Make often just shows a generic Bad Request.
So I’d review:
Most likely it’s not the App Secret, but one of the request parameters being sent in the wrong format or as null.
Bad request errors in Make modules can be tricky because the scenario may look correct at first glance. I’ve run into this when one of the mapped fields was sending an empty value or the format didn’t match what the API expected. Checking the raw output from the previous step usually helps reveal where the request starts breaking.
A Bad Request in an HTTP module usually means the request is being sent, but one of the fields is invalid or empty.
From your scenario, I’d mainly check the 2nd HTTP module: the URL, headers, body, and especially the values mapped from the iterator. Very often the issue is a required parameter missing or being sent as null, not the App Secret itself.
So I’d say the problem is more likely in the request data being sent than in the connection itself.