icloud4j icon indicating copy to clipboard operation
icloud4j copied to clipboard

Issue with the rawDownloadUrlToken within the DriveNode class

Open tibexl opened this issue 4 years ago • 0 comments

    // E.g. "v=2:t=AQAAAABXzO24CYflBW2JwysxyUEL9KxRNoEX1Qk~"
    Map<String, String> authMap = Splitter.on(":").omitEmptyStrings().trimResults().withKeyValueSeparator("=").split(rawDownloadUrlToken);
    downloadUrlToken = authMap.get("t");

When connecting I receive a URL then that is formatted as following which obviously breaks the withKeyValueSeparator method. // E.g. "v=2:t=AQA==AAABXzO24CYflBW2JwysxyUEL9KxRNoEX1Qk~"

tibexl avatar Aug 21 '20 16:08 tibexl