調べると結構な人たちが
| 1 2 3 4 5 6 7 8 | pm.sendRequest({     url: 'http://localhost:8080/sanctum/admin-csrf-cookie',     method: 'GET', }, function (error, response, { cookies }) {     if (!error) {         pm.environment.set('xsrf-token', cookies.get('XSRF-TOKEN'))     } }) | 
こうしろって言ってるけどさ
皆そっから2回目の通信出来てるのかな?
私全然無理だったんだけど
永遠に
TypeError: Cannot destructure property ‘cookies’ of ‘undefined’ as it is undefined.
ってエラーが出続ける
| 1 2 3 4 5 6 7 8 9 10 11 | pm.sendRequest({     url: 'http://localhost:8080/sanctum/admin-csrf-cookie',     method: 'GET',     header: {         'Accept': 'application/json'     } }, function (error, response, { cookies }) {     if (!error) {         pm.environment.set('xsrf-token', cookies.get('XSRF-TOKEN'))     } }) | 
こうしたら大丈夫になった
皆こうしなくてもできてるの???
不思議なんだが
私なにか他に設定足りないのか?