Hi @Sgilk , I can confirm that I get a token. Using the webdav link I get a 401 axios error. async function transfer(blob) {
let response = await axios.post(`https://${_ipAddress}/identity-manager/api/v2/auth/token`, { name: _username, password: _password });
// Add error handling
const token = response.data.access_token;
await axios({
method: "put",
url: `https://${_ipAddress}/solutions/webdav/appdata/test/test.txt`,
data: blob,
headers: { authorization: 'Bearer ' + token, "Content-Type": "application/json" },
});
// Add error handling
console.log('Transfer success...');
} I am now trying to upload a .txt file and this is my transfer function.
... View more