You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
res.status(406).send('Sorry, this method serves only json. You Requested : '+req.get('Accept'));
44
+
}
45
+
})
46
+
47
+
app.options('*',function(req,res){
48
+
res.send("GET - /rr/nachname/value - ROUTE PARAMETER TEST \n GET - /rq/?name=value - QUERY PARAMETER TEST \n POST - /p - POST TEST \n GET - /h - HEADER TEST \n GET - /h2 -HEADER TEST CONTENT-TYPE \n GET - /uhrzeit - HEADER TEST ACCEPT");
0 commit comments