Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
481 views
in Technique[技术] by (71.8m points)

ajax - Laravel and vue - VerifyCsrfToken except don't working

I send some POST request by my 'presenze' application with Vue axios to another laravel server 'AUTHSERVER'. If I set the middleware VerifyCsrfToken.php so:

class VerifyCsrfToken extends Middleware
{    
    protected $except = [
        '*'        
    ];
}

it works very good, but if I make this:

 protected $except = [
        'http://presenze',
        'http://presenze/*',
    ];

I receive this error:

XHRPOSThttp://authserver/login/mysql_verify
[HTTP/1.1 419 unknown status 9ms]   
....

what is the just way to write the except array in the middleware? App requesting is 'http://presenze' ! Can anyone help me please? thanks. bye.

question from:https://stackoverflow.com/questions/65925171/laravel-and-vue-verifycsrftoken-except-dont-working

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I made it in VerifyCsrfToken.php Middleware:

class VerifyCsrfToken extends Middleware
{    
    protected $except = [
        'api/*',
    ];
}

and all routes I trasformed from /presenze/* in /api/* Now it works fine. I think it need to be called with the standard /api/ prefix ... I think. Do you know another explanation? If anyone knows, your intervention is welcome.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...