You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It does not work out of the box, it requires adding another method into the “DropboxDownloader” -> public override void Download(string url, string destFolder, Action<long> onChunkDownloaded) and this method is when we convert it 1 to 1 to Dropbox Code not multithreaded.
Dropbox got a Terms of Service Update back in September 2021 which changes the OAuth workflow, the new workflow says it's no longer possible to create “Long living Tokens” but the App can request an “Short living Token” from the Dropbox Server which can be used as temporary credentials while using the patcher. Here is an example in c# of the new OAuth workflow Github Dropbox API Example. Using just an “Short living Token” makes the patcher not connect any more after some hours with the same token.
I'm currently editing the Files for my own game so once I've done it I can send a Pull Request or sharing the Code to the PATCH Authors to review and use.
The text was updated successfully, but these errors were encountered:
The Dropbox feature has 2 major issues:
It does not work out of the box, it requires adding another method into the “DropboxDownloader” ->
public override void Download(string url, string destFolder, Action<long> onChunkDownloaded)
and this method is when we convert it 1 to 1 to Dropbox Code not multithreaded.Dropbox got a Terms of Service Update back in September 2021 which changes the OAuth workflow, the new workflow says it's no longer possible to create “Long living Tokens” but the App can request an “Short living Token” from the Dropbox Server which can be used as temporary credentials while using the patcher. Here is an example in c# of the new OAuth workflow Github Dropbox API Example. Using just an “Short living Token” makes the patcher not connect any more after some hours with the same token.
I'm currently editing the Files for my own game so once I've done it I can send a Pull Request or sharing the Code to the PATCH Authors to review and use.
The text was updated successfully, but these errors were encountered: