Start 2025 on time and up to date. Seamlessly integrate your calendars into Dropbox with these simple steps.
dropbox
5 TopicsDoes Dropbox remove trailing slash at the end of an url?
Hi all, recently we've relaunched a new website:link removed However the Authorization process in Dropbox for a specific link link removed isn't working as intended. Here's how it works: However according to someone in our engineering team calling this url in dropbox does remove the trailing slash at the end leading of this link: link removed resulting in the process to fail. I'm not an expert on this so : What should we do? We recreated the site from scratch in webflow. We used this code on the page to enforce the trailing slash at the end: Any help/ideas would be really appreciated 🙂45Views0likes2CommentsAutomated Dropbox Backup to LaCie d2 Professional
Hey everyone, In our office, we use Dropbox to save all our files, keeping everything up to date since we work on a project basis. Recently, we decided to enhance file security, so we purchased a LaCie d2 Professional 14TB storage device. Can anyone guide us on how to set up an automated backup from Dropbox to the LaCie d2 Professional maybe like a weekly or certain period of time, Appreciate it !! Thanks18Views0likes0CommentsDropboxAPI uploading small files
Hi! I ask for help in solving my problem. I have a Python script that runs on about 500 PCs. After running, each script writes a text file with a size of 60 bytes (approximately) and uploads it to my Dropbox folder. And I ran into such a problem that the created files can be uploaded to Dropbox indefinitely. Sometimes the file can load after 10 minutes, and sometimes after 2 hours or more. I can't figure out what this is related to, please help me figure it out. Here is a piece of my code where a file is created and uploaded to Dropbox.68Views0likes1CommentChatgpt Actions to interact with Dropbox
Hello, i am trying to use chatgpt actions to get and put files to my dropbox account. in below spec file, i am just trying to download /transactions.csv from root folder of my dropbox. with curl command, it works perfectly fine but using chatgpt throws error. Could you please confirm if there’s an issue with my implementation or if additional headers or configurations are required to prevent the request body is supposed to be empty error? i get below response from API: { "response_data": "Error in call to API function \"files/download\": The request body is supposed to be empty, but it isn't; got \"{}\"", "status_code": 400, "action_id": "g-d9e5d6855647322df1b771ba6c20113613691c5e" } Below is my chatgpt spec file: openapi: 3.1.0 info: title: Dropbox File Management API version: 1.0.0 servers: - url: https://content.dropboxapi.com/2 paths: /files/download: post: summary: Download a file from Dropbox description: Downloads the file `transactions.csv` from Dropbox. operationId: downloadFile parameters: - name: Dropbox-API-Arg in: header required: true description: JSON string specifying the path to the file to be downloaded. schema: type: string example: '{"path": "/transactions.csv"}' responses: '200': description: File downloaded successfully. content: application/octet-stream: schema: type: string format: binary '401': description: Unauthorized. '404': description: File not found. '500': description: Internal server error. security: - bearerAuth: [] components: securitySchemes: bearerAuth: type: http scheme: bearer bearerFormat: JWT schemas: {}