Greg-DB Dropbox Community Moderator

Comments

  • You can use an access token generated from the app's page on the App Console to connect to your own account. Note that depending on the app's configuration, the access token may be short-lived (expires after four hours) or long-lived (doesn't expire by itself). If you don't yet have the "Access token expiration" option on…
  • The initial authentication/authorization flow does require manual user interaction, but you can store and re-use the resulting access token after that for future use without further manual user interaction.
  • The webhook notification payload will tell you which account has had changes, so you can then use the corresponding access token for that account to call /2/files/list_folder[/continue] (or corresponding methods in whatever SDK/library you're using, if any) to see what exactly changed.
  • I'm not sure I understand your question. Are you referring to the folder's contents? If you copy a folder, it will copy the entirety of the folder's contents, including any subfolders.
  • A 'to/conflict/folder' error indicates that the call failed because there's already a folder at the specified destination path. If you're trying to a copy a folder to the inside of another folder, your destination path needs to include the desired name of the folder copy itself, in addition to any parent components, and…
  • Dropbox APIはHTTPS要求と応答を介して機能するため、理想的には、失敗した呼び出しの完全なHTTPS要求と応答を出力してこれをデバッグします。応答ヘッダーと本文には、失敗に関する情報が含まれています。 これがツールで実行できる設定でない場合は、ツールの開発者に問い合わせてください。 -----------– 読みやすい翻訳をご提供できず申し訳ございません。当社からの返答にはオンライン翻訳を使用しています。どの言語にも対応することが理想ではありますが、現時点ではそれが可能ではありません。こちらが英語版です。 -----------– Please excuse our translations. Our responses…
  • @"umalik-pd" I'm not sure I understand your comment. You can lookup and access files passed along the extensions flow from a ("personal" or "user-linked") Dropbox API app with Full Dropbox access, even if the file happens to be in the team space. If the file happens to be in the team space, you just need to set…
  • I can't offer a particular date for general availability. If you'd like to opt-in early though, feel free to open an API ticket from the relevant account and I'll ask the team if we can enable it for you.
  • If you have a shared link for a folder and want to programmatically list its contents using the .NET SDK, you should use the ListFolderAsync/ListFolderContinueAsync methods, and supply the 'path' and 'sharedLink' parameters to ListFolderAsync. The 'path' parameter value should be the empty string if you want to list the…
  • This is still open with engineering, but I don't have an update on this yet. I'll let you know once I do.
  • The '"code": must not be empty' comes from the Dropbox API /oauth2/token endpoint, and indicates that the client did not supply the required "code" parameter. You'll need to debug your app to see why you're not sending up the expected code value, which seems like it's supposed to be in the 'params['code']' in your case. I…
  • We don't currently have an official sample for that using the Python SDK in particular, but I'll pass this along as request for one. Here's an example I put together for uploading a large files using upload sessions though: (note, I haven't tested this extensively, and it doesn't have any error handling) f =…
  • @"umalik-pd" Thanks for the feedback! In this scenario, it sounds like the "ROOT/" you're referring to is a Business "team space". Apps with Full Dropbox access can actually access files in the team space that the connected user has access to (for which they may have triggered the extensions flow). API calls do default to…
  • Dropbox is introducing new scopes functionality, as you've found referenced in the documentation. We've only just begun rolling this out though, so it is not available to everyone yet. It sounds like it is not enabled for your account yet, so please continue to use the existing non-scopes functionality for now.
  • 残念ながら、このログにはDropbox API自体からのエラー応答が表示されていないようです。そのため、これに基づいて多くの洞察を提供することはできません。トラブルシューティングについては、このサードパーティツールの開発者にお問い合わせください。 -----------– 読みやすい翻訳をご提供できず申し訳ございません。当社からの返答にはオンライン翻訳を使用しています。どの言語にも対応することが理想ではありますが、現時点ではそれが可能ではありません。こちらが英語版です。 -----------– Please excuse our translations. Our responses were created using an…
  • [Cross-linking for reference: https://stackoverflow.com/questions/62718038/access-control-allow-origin-header-is-present-on-the-requested-resource ] I see you already posted this on StackOverflow and got a response there. That response is correct, Dropbox doesn't allow CORS requests on www.dropbox.com.
  • Thanks for checking that. I've tried this on iOS 13 and it is working for me, so we'll need to keep troubleshooting this to see what's breaking in your case. To try to narrow this down though, can you step through with the debugger to see what part is or isn't running? For example, is the redirect to your app (via the URL…
  • Dropbox does offer an API you can use for listing, uploading, and downloading files, among other operations, to/from Dropbox, without having the official Dropbox app installed. You can find everything you need to get started with the Dropbox API, including documentation, tutorials, and SDKs here:…
  • Thanks for following up. I'm glad to hear you found a workaround. I was just about to follow up here with some good news actually. We were now able to implement and enable app folder app support for the check endpoints. That should be rolling out now, so you should be able to use the check().user method from your app…
  • Thanks for the report. I can't seem to reproduce this error when I try a folder embed in Safari 13 myself though. Would you be able to share a sample page where this occurs? Feel free to open a ticket here if you'd prefer to share privately.
  • The new scopes functionality is only for granting more granular access to different pieces of functionality on the API (essentially, more granular control over which endpoints can be used), but unfortunately does not offer more options for which content to grant access to or offer a way to support shared folders in app…
  • @"WS_TimmBoeken" Thanks for the report! Can you print out and share the actual response headers/body (like miago did here) so we can take a closer look at what's happening in this case? Thanks in advance.
  • 残念ながら、この出力はAPIからの実際のエラーを示していません。 Dropbox APIから受け取ったAPI応答を共有できますか?出力には、ログが含まれている可能性があることが記載されています。 -----------– 読みやすい翻訳をご提供できず申し訳ございません。当社からの返答にはオンライン翻訳を使用しています。どの言語にも対応することが理想ではありますが、現時点ではそれが可能ではありません。こちらが英語版です。 -----------– Please excuse our translations. Our responses were created using an online translator. We'd like to…
  • Thanks, in that case we'll need to investigate some more. Can you let me know: * What version number of SwiftyDropbox are you using? If you're not already on the latest version, currently v5.1.0, please upgrade to that and try again. * Can you double check you have all of the steps for configuring your project and handling…
  • Does your app use "scenes"? If so, you'll need to update the redirect handling as discussed here.
  • @"Nick-Kleinschmidt" This post is currently in the API forum (a moderator may have moved it), and I can help with questions regarding the Dropbox API. I'm afraid I can't offer much help with this topic though since it's not actually about the Dropbox API, but rather using the functionality provided by iOS and the Dropbox…
  • In order to process a copy in the member's folder like this, you should use AsMember instead of AsAdmin. (For reference, this is because the /2/files/copy_v2 endpoint uses the "Team Admin" mode for "Dropbox-API-Select-Admin", meaning it can't access the member's private files.)
  • Dropbox APIに関する問題については喜んでお手伝いさせていただきますが、さらに詳しい情報が必要です。返信してください: * 使用しているプラットフォームとSDK /ライブラリの名前とバージョン番号(ある場合) * 関連するコードスニペットを含め、問題を再現する手順。ただし、アクセストークン自体は含めないでください。 * エラーまたは予期しない出力の全文 -----------– 読みやすい翻訳をご提供できず申し訳ございません。当社からの返答にはオンライン翻訳を使用しています。どの言語にも対応することが理想ではありますが、現時点ではそれが可能ではありません。こちらが英語版です。 -----------– Please excuse…
  • Unfortunately, Dropbox does not offer the ability to grant an access token access to specific folder(s). The Dropbox API currently offers two app permissions: "app folder" and "full Dropbox". Access tokens for apps with the app folder permission can only access the special app folder created for the app in the connected…
  • From your description, it sounds like this may be related to the particular encoding of the unicode strings, so you should probably normalize the strings before comparing them. Since you mentioned you're using PHP, here's some information about this in the PHP documentation:…