エラー発生経緯
NetlifyにデプロイしていたアプリをXserverに移行してからフォームの送信時にエラーが発生するようになりました
前提・実現したいこと
Xserverでフォームの送信を正常に行いたい
発生している問題・エラーメッセージ
POST https://cors-anywhere.herokuapp.com/https://docs.google.com/forms/xxxxxxxx/formResponse 403 (Forbidden)
該当のソースコード
javascript
1const params = new FormData(); 2params.append("entry.579605838", this.name); 3params.append("entry.1037036830", this.email); 4params.append("entry.978839735", this.message); 5const CORS_PROXY = "https://cors-anywhere.herokuapp.com/"; 6const action ="https://docs.google.com/forms/xxxxxxxxx/formResponse"; 7axios.post(CORS_PROXY + action, params) 8.then(() => { 9 this.$router.push("/thanks/"); 10 }) 11.catch(({ response }) => { 12 console.log(response); 13 });
エラーの仮説がうまく立てられないのヒントをお願いします????♂️
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/04/13 10:15