I cant upload file with Box API my code:
var sdk = new BoxSDK({ clientID: BOX_clientID, clientSecret: BOX_clientSecret});
// Create a basic API client
var client = sdk.getBasicClient(BOX_accesstoken);
var fileData = fs.createReadStream('C:\\Exports\\test.txt')
client.files.uploadFile('123', 'test.txt', fileData, function(err, file) {
if (err){console.log('err: ' + err);
}
else{console.log('file uploaded: ' + file);
}
});
// Get some of that sweet, sweet data!
client.users.get(client.CURRENT_USER_ID, null, function(err, currentUser) {
if(err) throw err; console.log('Hello, ' + currentUser.name + '!');
});This is the output
Hello, UserXYZ!
err: Error: Unexpected API Response [404 Not Found] (not_found: "Not Found")
Also I really don´t understand how to refresh my token with node.js the code from the docs is not working for me. Has somebody working sample codes for uploading files and how I can endless use a token I don´t want to enter new access codes everytime.
Thank you.