When I call await this.helpers.httpRequestWithAuthentication.call(this, 'httpBasicAuth', options)
, I get a Forbidden - perhaps check your credentials?
error.
If I manually add this before the request, it works fine:
options.auth = {
password: credentials.password as string,
username: credentials.user as string
}
But this should be handled by httpRequestWithAuthentication
automatically? Having the same problem when trying with oAuth2Api
.
No idea what could be missing…