Hi,
Is there a reason why Content-Type header here is sent with lower case t?
I just debugged my mobile app few hours, until realizing, I need to implement case insensetive headers, when using passport. :)
|
'Content-type' => 'application/json', |
public function getHttpHeaders(): array
{
$headers = [
'Content-type' => 'application/json',
];
...
Hi,
Is there a reason why Content-Type header here is sent with lower case t?
I just debugged my mobile app few hours, until realizing, I need to implement case insensetive headers, when using passport. :)
oauth2-server/src/Exception/OAuthServerException.php
Line 308 in 7cb615b