function test() { $.ajax({ url: "/test_goora.php", type: "post", data: JSON.stringify(obj), dataType: "json", headers:{ "Content-type":"application/json", "Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJhbzI1NiJ9.eyJpc3M" }, success: function(data) { console.log( data ); }, error: function(errorThrown) { console.log(errorThrown); } }); 위와 같이 ajax를 이용하여 header로 데이터를 전송 시 php에서 Authorization에 값을 받으려면 ..