Support the ongoing development of Laravel.io →
Testing Input Requests
Last updated 1 year ago.
1

My solution was to use method call as follows:

$response = $this->call(
    'GET', 
    'api/user/logout', 
    [], 
    [
        'key' => Illuminate\Support\Facades\Crypt::encryptString('abc123'), 
        'uid' => Illuminate\Support\Facades\Crypt::encryptString($user->id)
    ]
);

It served my case and I didn't have to remove the cookie middleware.

Last updated 3 years ago.
1

Sign in to participate in this thread!

Full Stack Europe

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2023 Laravel.io - All rights reserved.