Hi Again Nico,
I remembered that this was an issue in the past that I had fixed via changing the preg_match regex.
I’ve fixed it again with the following change:
src/Services/BaseService.php
Line 167 – Original Code
'/^(?:Bearer)?[\s]*(.*)$/mi'
Line 167 – Changed Code
'/(?:Bearer ?)?(.+)/m'
I am not strong with regex, so it’s difficult for me to analyze what the issue is. I’m also not sure why other people aren’t reporting issues with this. I just wanted to let you know that this corrected our issue.
Thanks,
Kris