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
I'm trying to use the function dir:
dir
const Netstorage = require('netstorageapi') // Defaults: SSL: false // By default no proxy is set const config = { hostname: "hostname", keyName: "keyName", key: "key", cpCode: "cpCOde", ssl: false, } // Don't expose KEY on your public repository. const ns = new Netstorage(config) ns.list('test', (err, response, body) => { if (err) { console.log('err: ', err) } console.log('body: ', body) })
Whatever the path I put (valid or not) I get the same message:
body: { message: 'Not Authorized.' }
What's wrong?
The text was updated successfully, but these errors were encountered:
I ran in the same issue and adding to your ns.list path try this:
ns.list(`/${config.cpCode}/test`, (err, response, body) => { if (err) { console.log('err: ', err) } console.log('body: ', body) })
Sorry, something went wrong.
No branches or pull requests
I'm trying to use the function
dir
:Whatever the path I put (valid or not) I get the same message:
What's wrong?
The text was updated successfully, but these errors were encountered: