Skip to content

Commit

Permalink
Support the custom parameters of the access token request (#707)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximepvrt authored Jun 11, 2024
1 parent beb3adc commit c8234bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Two/AbstractProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ protected function getTokenFields($code)
$fields['code_verifier'] = $this->request->session()->pull('code_verifier');
}

return $fields;
return array_merge($fields, $this->parameters);
}

/**
Expand Down

0 comments on commit c8234bf

Please sign in to comment.