DB-Des Dropboxer

Comments

  • Hi @"Jagan Tirumalai", You would need to use getter methods to retrieve the values of the respective properties. Following the example provided previously (for PKCE flow), it is returning a DbxAuthFinish object. That object contains getters for the properties that could be returned in the response — one of them being the…
  • Hi @"maverick1985", In the response object from the request sent to /team/members/list_v2[continue] endpoint, you should check if the roles property is present. The information contained in this property provides the role_id, the type of admin role the user has (under name), and a short description of the role. As such:…
  • Hi @"Jagan Tirumalai", Based on the Auth URL you have provided, it looks like you are following a PKCE auth flow, which would explain why the suggestion to use DbxPKCEWebAuth is being made. If the intention is to use PKCE, we would recommend taking a look at this example instead.
  • Hi @"Jagan Tirumalai", Even though Dropbox issues short-lived access tokens, apps can get long-term access by requesting "offline" access, in which case the app receives a "refresh token" that can be used to retrieve new short-lived access tokens as needed, without further manual user intervention. Refresh tokens do not…
  • Hi @"Legrend_Sargentpc", A "path/not_found" Dropbox API error indicates that the API call failed because there was nothing currently found at the specified path in the connected account under the relevant root. Keep in mind that when using an app with the "full Dropbox" access type, API calls default to the member folder,…
  • Hi @"GaryH_BAR01", The /oauth2/token endpoint only accepts application/x-www-form-urlencoded format. Additionally, based on the screenshot provided, there is a field being added with "user" as a parameter, which is not a parameter recognized by /oauth2/token — most likely why you are receiving that error. When using Basic…
  • Hi @"GaryH_BAR01", To add to @Здравко's suggestion: Apps can get long-term access by requesting "offline" access, this can be achieved by adding "token_access_type=offline" to the authorization URL. Keep in mind that there will need to be user interaction the first time the app is being authorized. A "refresh token" is…
  • Hi @"Alex1347" The suggestion in the answer you linked is helpful as part of the troubleshooting process. As highlighted in that post, downloading the file to confirm the file size is correct should rule out any issues that may have occurred during the upload process. Alternatively, you can confirm that the content_hash…
  • Hi @"Lukag", The following lines of code are actually appending the parameters to the URL, hence why you are receiving a 404. Dim _command As String _command = "https://api.dropboxapi.com/oauth2/token "_command += " -d grant_type=refresh_token "_command += "-d refresh_token=" & _refresh_token_command += "-d client_id=" &…
  • Hi there, Please submit a support request from the email you are using to make API requests, along with the code snippet you just provided, so we can further assist you in determining why that error is being thrown.
  • Hi there, Dropbox does not offer the option for permanent tokens. However, apps can get long-term access by requesting "offline" access, in which case the app receives a "refresh token" that can be used to retrieve new short-lived access tokens as needed, without further manual user intervention. Refresh tokens do not…
  • Hi, Are the original teams with "shared team space" configurations still gonna be migrated to new "updated team space" configuration? Or will they just stay the same, and will never be updated to "updated team space", only the teams after 2024/01/31 will have new configurations? All existing teams will be migrated to the…
  • Hi there, Apps can get long-term access by requesting "offline" access, in which case the app receives a "refresh token" that can be used to retrieve new short-lived access tokens as needed, without further manual user intervention. Refresh tokens do not expire automatically and can be used repeatedly. You can find more…
  • Hello, There is nothing special, or different, that needs to be done when running code in AWS Lambda from the Dropbox side. If it's working locally (in dev), it should work remotely (on a server). Are you able to re-confirm that the same exact code is being run in both environments?
  • Hi, We don't have any additional updates to provide as of today. Once we have more information to share, we will let you know.
  • Hi there! Looks like you're experiencing similar behavior as described in this post, only with a different method/type. The recommendation here would be similar: call FileLockContent.isSingleUser first, to confirm whether that lock is held by a single user. Only if that resolves to true, then…
    in Error Comment by DB-Des November 2023
  • Hi there! Pagination with the Dropbox API only goes forward. You may want to have your application process all the results first and then use that data as needed in your application.
  • Hi there, Thanks for the report! We're investigating this API issue. I'll follow up here once I have an update.
  • Hi there, We appreciate your feedback, I’ll be sure to bring this up with the team for review. To address some of your concerns: * Dropbox is not making changes to the behavior of the API for teams with the previous configurations. The API behaves differently for teams with the latest configuration however, and Dropbox…
  • There was an issue opened in GitHub recently, which prompted one of our engineers to create a sample repo for how Dropbox Sign SDK can be implemented using Next.js.
  • Hi, We have not received any reported issues from developers who have been using the Node SDK since its official release. You can reach out to our support team with more details, including code snippets, for your integration to see if we can figure out where the error is coming from.
  • @"Pratik2" The endpoint /token/revoke does not require any specific scopes. In order to better assist, could you provide us with the exact error message you are receiving from the API?
  • Hello, The reason you are seeing that error is because the Dropbox Sign Node SDK uses Node.js specific modules, or modules that are not available on the client side. You can address that issue by looking into NextJS' getStaticProps, getStaticPaths or getServerSideProps functions. References: * Module Not Found * Get Server…
  • Hi there, Just a few questions, for you: * Did you install the DropboxSign API using npm? * Are you using a front-end library, such as React? * Are you using a framework such as Vue or NextJS?
  • Hi there, In order to change the requester for a signature request, you will need to create an unclaimed draft instead of a signature request. In the request body, you'd assign the email of the user to the requester_email_address parameter. That user can then load the request on the iframe, place signer fields and send the…
  • Hi! Both Dropbox and Dropbox Sign offer APIs which will allow you to have a file storage and eSignature functionality in your own web app. Feel free to take a look at the documentation for each service to get started: * Dropbox Sign API * Dropbox API I hope you find this helpful!
  • Hi, If you are sending documents to sign directly from within your Dropbox account, you are able to access the document's information by logging into your Dropbox Sign account. You'll have a better view of all documents sent out for signature there.
  • Hi there! You can save the message and recipient email from a signature request by retrieving the values of the message and the signer_email_address properties (within the signatures array) from the response object. To save the actual documents sent and signed, you can call one of the 3 following endpoints: * Download…
  • Hi! I'll be happy to help with any issues you're having with the Dropbox API, but I'll need some more information. Please reply with: - the name and version number of the platform and SDK/library you are using, if any - the steps to reproduce the issue, including relevant code snippet(s), but don't include any access or…
  • Hi! As of today, the Dropbox API does not offer the ability to list tags for all folders or files. We can go ahead and submit this as a feature request, though I cannot guarantee when and if this will be implemented.