We Want to Hear From You! What Do You Want to See on the Community? Tell us here!
dropbox
6 TopicsSSL Certificate error or SSH md5 fingerprint not Ok error.
In our application we our using third party login to dropbox using OAuth. When the app is trying to load the login page it is showing error SSL Certificate error or SSH md5 fingerprint not Ok error while communicating with https://marketing.dropbox.com/oauth2/authorize and after that error shows with dropboxcaptcha.com. The login page is not able to load because of this error. Do anyone know why ? We have checked from our side regarding all the certificates in our application. The certificates are valid and have not expired. It looks like it is from the dropbox side.14Views0likes0CommentsCloudRail - Dropbox - Missing client_id
Over the Easter weekend (Apr-10, 2025), Dropbox apparently made a change that makes it impossible for PimlicalAdvancedCalendar to log in through its CloudRail library. This has worked flawlessly for many years, and no change was made to PimlicalAdvancedCalendar or the CloudRail library (which is no longer supported by the developer). Is there a reason why Dropbox has suddenly made this change? Anyone else out there with an application that was using CloudRail to access Dropbox have any idea of what Dropbox did over the Easter Weekend?SolvedDoes 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 🙂50Views0likes2CommentsDropboxAPI 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.104Views0likes1CommentChatgpt 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: {}337Views0likes1Comment