Answers for "how to login laravel passport with postman"

PHP
0

how to login laravel passport with postman

$response = $http->post('http://your-app.com/oauth/token', [
    'form_params' => [
        'grant_type' => 'password',
        'client_id' => 'client-id',
        'client_secret' => 'client-secret',
        'username' => '[email protected]',
        'password' => 'my-password',
        'scope' => '',
    ],
]);
Posted by: Guest on July-23-2021

Code answers related to "how to login laravel passport with postman"

Browse Popular Code Answers by Language