別のドメイン test.example.com から example.com にアクセスしたいと考えています。サーバーexample.comをセットアップして、次のようなCORSヘッダーでヘッダーに応答します(nginx.conf内):
add_header Access-Control-Allow-Origin $http_origin;
add_header Access-Control-Allow-Credentials true;
add_header Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS";
add_header Access-Control-Allow-Headers "*";
GET リクエストを送信すると成功しますが、POST リクエストを送信すると、次のエラーで失敗します。
XMLHttpRequest cannot load http://example.com/path. Origin http://test.example.com is not allowed by Access-Control-Allow-Origin.
corsで投稿リクエストを行うにはどうすればよいですか?