Home > Back-end >  How can i resend session cookie with angular?
How can i resend session cookie with angular?

Time:03-29

we have api buildet with laravel and we use JWT to securse our api,we send each request with set cookie and head but in front we use angular we have problem to send this cookie with diferent domaine name. need help

CodePudding user response:

You can never set a cookie on a different domainname… unless you let the front-end handle setting the cookie

  • Related