お世話になります。
実現したいこと
WebGLで外部のPHPへリクエストしたいです。
しかし、エラーが発生してしまいました。
発生している問題・エラーメッセージ
localhost/:1 Access to fetch at 'http://xxxx.xxx.xxx.xxx:80/xxx.php?hoge=piyo' from origin 'http://localhost:54658' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. If an opaque response serves your needs, set the request's mode to 'no-cors' to fetch the resource with CORS disabled.
該当のソースコード
C#
1private IEnumerator TestMethod() 2{ 3 string url = "http://xxxx.xxx.xxx.xxx:80/xxx.php?hoge=piyo"; 4 WWW fuga = new WWW(url); 5 6 yield return fuga; 7 HelloString(fuga.text); // Javascript window.alert() 8}
試したこと
マニュアルを見ましてヘッダー情報を足せばよさそうなことは分かりました。
しかし、ヘッダー情報の足し方が分かりません。
https://docs.unity3d.com/ja/current/Manual/webgl-networking.html
どの様なコードでヘッダーを足せますでしょうか。
有識者がおりましたらご教授をお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2023/05/05 04:00
退会済みユーザー
2023/05/05 05:51