-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
Description
As i progress, using the Addon to establish an authorization workflow, i now stumbled across the following error:
"0xC0000409 - STATUS_STACK_BUFFER_OVERRUN".
Here's my request:
_cliendid = ["http://192.168.0.102:8000/api/user", "GET", [], true] call a3uf_common_fnc_addClient;
access_token = "7c9f8d58da05147b9cfe0bfb9210603668c924bc";
_token_string = format ["Bearer %1", access_token];
[_cliendid, [["Content-Type", "application/json"], ["Authorization", _token_string]]] call a3uf_common_fnc_setClientHeaders;
_response = [_cliendid] call a3uf_common_fnc_clientRequest;
Its a function, spawned by user input, which calls a local api endpoint, maybe its just a headers problem.
Thanks in advance,
Luke