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
After upgrading from v7 to v8, the .sign() command no longer works for me due to this error:
.sign()
Invalid AMO API base URL: undefined
My code is:
import webExt from 'web-ext'; await webExt.cmd.sign({ apiKey: '<hidden>', apiSecret: '<hidden>', artifactsDir: '<hidden>', channel: 'unlisted', sourceDir: '<hidden>', })
I can overcome this error by adding:
amoBaseUrl: 'https://addons.mozilla.org/api/v5/'
But the docs say I shouldn't need to do that as this is already the default.
If no amoBaseUrl is specified, error is thrown.
amoBaseUrl
If no amoBaseUrl is specified, the default is used.
node --version && npm --version && web-ext --version v20.14.0 10.7.0 8.0.0
The text was updated successfully, but these errors were encountered:
Ha, indeed. I suppose we can set a default value.
Sorry, something went wrong.
No branches or pull requests
Is this a feature request or a bug?
After upgrading from v7 to v8, the
.sign()
command no longer works for me due to this error:My code is:
I can overcome this error by adding:
amoBaseUrl: 'https://addons.mozilla.org/api/v5/'
But the docs say I shouldn't need to do that as this is already the default.
What is the current behavior?
If no
amoBaseUrl
is specified, error is thrown.What is the expected or desired behavior?
If no
amoBaseUrl
is specified, the default is used.Version information (for bug reports)
The text was updated successfully, but these errors were encountered: