Yosh
Yosh7mo ago

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
No description
4 Replies
Gaurav Chadha
Gaurav Chadha7mo ago
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.
No description
Yosh
Yosh7mo ago
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" }
Gaurav Chadha
Gaurav Chadha7mo ago
Yes, Discord does not allow to send json directly, you can try stringify it or extract the values and then send it.
Yosh
Yosh7mo ago
Hi there, thank you that solved the issue