Help with framer and Discord Webhook
Hi there,
I have sucesfully integrated a framer form using the tutorial posted via youtube. I can sucessfully send the data to Supabase but I cannot send a discord message using Webhook Bot integration. The logs say success but no message goes to discord. (I am using the correct webhook URL) My workflow is pretty simple. Any help would be greatly appreciated.
I am just trying to post a message when a user signs ups or when a form is submitted
4 Replies
Hi @Yosh, can you test the Discord node with your webhook and sample content and see if you recieve the message, to ensure the webhook will work.
Hi - Yes I've tried that and it does send a message to the channel. Interesting. Now it means the body of the form I'm sending isn't being picked up. Have any suggestions?
A body like this is having difficulty sending to discord
{
"firstName": "test",
"email": "test@test.com",
"subscribe": true,
"lastName": "test",
"industry": "test",
"message": "test"
}
Yes, Discord does not allow to send json directly, you can try stringify it or extract the values and then send it.
Hi there, thank you that solved the issue