Next.js Discord

Discord Forum

slack

Unanswered
American Curl posted this in #help-forum
Open in Discord
American CurlOP
how can I integrate slack with my next js app and send a message to slack when the user click on subscribe button ? the error message show is that Cross-Origin Request Blocked: The Same Origin Policy disallows reading the remote resource at https://hooks.slack.com/services/T05JE1HNP6E/XXXXX/XXXX. (Reason: CORS request did not succeed). Status code: (null).

2 Replies

Philippine Crocodile
Can you share the code where you are POSTing to the slack webhook URL?
Example from one of my repos

await axios.post(webhookUrl, {
  text: `Test webhook`
});