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
Hi,
can somebody please explain, what is the point of setAccessToken method on Configuration object?
$config = new Configuration(); $config->setAccessToken($api->getAccessToken());
well, one could say "it obviously sets a header in upcoming request!", but it doesn't, one needs to do below to actually make request work
$config = new Configuration(); $config->addDefaultHeader('Authorization', 'Bearer ' . $api->getAccessToken());
Regards
The text was updated successfully, but these errors were encountered:
Hi @jgwiazdowski,
Thank you very much for sharing the above, I will contact the developer team to help us with an answer.
Regards,
Eric | Docusign
Sorry, something went wrong.
shan285
No branches or pull requests
Hi,
can somebody please explain, what is the point of setAccessToken method on Configuration object?
well, one could say "it obviously sets a header in upcoming request!", but it doesn't,
one needs to do below to actually make request work
Regards
The text was updated successfully, but these errors were encountered: