Most RecentMost ViewedMost LikesUpload multiple files in session Backstory I have a bunch of small PDFs (18 kb each). filesUpload worked until I understood that a `429` is quite usual. Researched and found the batch endpoints. I wanted to use `/upload_session/start_batch`, `/upload_session/append_batch` & `/upload_session/finish_batch` to upload all files in a session. For stability I used the JS SDK.....but there is no method for `/upload_session/append_batch` 🧐 I created my own method and used the endpoint directly.....worked. But I got errors in the `finish_batch` Then I thought: If the file size off all PDFs is so small, maybe I can upload them directly in the `start` without any `append` and without batch session. I thought, I can use the one `session_id` returned by the `filesUploadSessionStart` method and then go with `filesUploadSessionFinishBatchV2` and split the uploaded file into the original PDFs. const allContent = concatArrayBuffers(...files.map(({ contents }) => contents)); const startResponse = await dbx.filesUploadSessionStart({ close: true, contents: allContent, }); const batchData = files.reduce( (acc, cur) => { acc.entries.push({ cursor: { session_id: startResponse.result.session_id, offset: acc.offset, }, commit: { autorename: true, mode: "add", mute: false, path: cur.path, }, }); acc.offset += cur.contents.byteLength; return acc; }, { offset: 0, entries: [], } ).entries; await dbx.filesUploadSessionFinishBatchV2({ entries: batchData.map(({ commit, cursor }) => ({ commit, cursor })), }); This is the code. Questions What is a session exactly? What is an entry exactly? Can I access one session from multiple entries in a `filesUploadSessionFinishBatchV2`? Where am I going wrong? Kamara-Uploads funktionieren nach Reset des S22 Handys nicht mehr Hallo liebe Community, leider habe ich ein Problem mit Dropbox, das ich nicht selber lösen kann. Hoffe irgendjemand kennt sich so gut aus, das er helfen kann und möchte: Problem: Nach einem Reset meines S22 Samsung Handys funktioniert der automatisch eingerichtete Kamra-Upload in meine Dropbox in den Ordner (Kamera-Uploads) nicht mehr. Im Hilfemenü wird mir genau beschrieben wie ich es einzustellen habe, aber die entsprechenden links finden sich in meinem Dropbox menu (Web-Version) nicht unter features. Die App Version kann ich nicht öffnen, da ich die Basic version habe und bei der Öffnung der App immer in eine kostenpflichtiges Premiumabomodell geführt werden soll. Ich möchte aber gerne bei der Basic Version bleiben, da ich die Dropbox nur für den Upload meiner Fotos vom Handy nutzen möchte. Meine Fragen: Wie stelle ich den automatischen Foto Upload vom Handy auf den Ordner Kamera-Uploads in der Dropbox ein? Wie kann ich mich in die Dropbox-App auf meinem S22 einloggen, ohne das Premiumaboabzuschließen? Vielen Dank für eine hilfreiche Antwort Holger Solved