正しいJSONコンテンツタイプは、"application/json"です。これは、JSON形式のデータを送信または受信する際に使用される標準的なメディアタイプです。
以下に、いくつかの簡単な方法とコード例を提供します。
<meta http-equiv="Content-Type" content="application/json; charset=utf-8">
HTTPヘッダーを使用する方法(サーバー側の設定が必要):
Content-Type: application/json
JavaScriptのXMLHttpRequestオブジェクトを使用する方法:
var xhr = new XMLHttpRequest();
xhr.open('POST', 'url');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.send(JSON.stringify(data));
Pythonのrequestsライブラリを使用する方法:
import requests
headers = {'Content-Type': 'application/json'}
response = requests.post(url, headers=headers, json=data)
これらの方法を使用することで、正しいコンテンツタイプを設定し、JSONデータを正しく送信および受信することができます。