We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is there anyone experienced this?
$headers = $this->input->request_headers(); $token = $headers['Authorization'];
returns truncated token. I print the $headers to see why I'm getting 401 status. Here's the result.
_result of Array ( [Content-Type ] => application/json [token ] => eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9 [Authorization ] => Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9 [User-Agent ] => PostmanRuntime/7.25.0 [Accept ] =>
I need some help. Thanks!
The text was updated successfully, but these errors were encountered:
You can use json_encode and json_decode to handle this. Let me know does this fix your problem.
Sorry, something went wrong.
No branches or pull requests
Is there anyone experienced this?
$headers = $this->input->request_headers();
$token = $headers['Authorization'];
returns truncated token. I print the $headers to see why I'm getting 401 status. Here's the
result.
_result of Array
(
[Content-Type
] => application/json
[token
] => eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9
[Authorization
] => Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9
[User-Agent
] => PostmanRuntime/7.25.0
[Accept
] =>
I need some help. Thanks!
The text was updated successfully, but these errors were encountered: