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
Our company uses a specific endpoint for quip: quip-COMPANY.com
quip-COMPANY.com
That would be a nice feature to have this as a parameter.
As a workaround, hardcoding and then running from the code npx quip-export works:
npx quip-export
diff --git a/lib/QuipService.js b/lib/QuipService.js index 79d940b..31a10e3 100644 --- a/lib/QuipService.js +++ b/lib/QuipService.js @@ -4,7 +4,7 @@ const LoggerAdapter = require('./common/LoggerAdapter'); const TIMES_LIMIT_503 = 10; class QuipService { - constructor(accessToken, apiURL='https://platform.quip.com:443/1') { + constructor(accessToken, apiURL='https://platform.quip-COMPANY.com:443/1') { this.accessToken = accessToken; this.apiURL = apiURL; this.logger = new LoggerAdapter();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Our company uses a specific endpoint for quip:
quip-COMPANY.com
That would be a nice feature to have this as a parameter.
As a workaround, hardcoding and then running from the code
npx quip-export
works:The text was updated successfully, but these errors were encountered: