<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Upload Error with v2 (migration from v1) in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245163#M13883</link>
    <description>Thanks! Since you downloaded the source, did you run `python setup.py install` as instructed here?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-python#installation" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-python#installation&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Please do so if you haven't already. If you did, did you get any errors?</description>
    <pubDate>Wed, 04 Oct 2017 15:58:47 GMT</pubDate>
    <dc:creator>Greg-DB</dc:creator>
    <dc:date>2017-10-04T15:58:47Z</dc:date>
    <item>
      <title>Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244561#M13764</link>
      <description>&lt;P&gt;Hi I am currently in the process of migrating my code to use v2 and am hitting an error when trying to upload in python.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error:&lt;/P&gt;
&lt;P&gt;stone_serializers.py", line 887, in _make_stone_friendly&lt;BR /&gt; raise bv.ValidationError(e.args[0])&lt;BR /&gt; ValidationError: client_modified: attribute of type 'NoneType' is not callable&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not sending a client mod time and not sure how to fix this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have to say v2 is much more complicated than v1 and feel the docs could use a lot of examples in them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any help would be appreciated.&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:18:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244561#M13764</guid>
      <dc:creator>OGMC</dc:creator>
      <dc:date>2019-05-29T09:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244742#M13800</link>
      <description>Can you share the code that produces this, and the version number of the SDK you have installed? Thanks in advance!</description>
      <pubDate>Mon, 02 Oct 2017 19:43:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244742#M13800</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-10-02T19:43:11Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244756#M13805</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What file is the version number in? i can't seem to find it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the current code i'm using has evolved from the example you posted in another thread which was giving me the same error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;with open(localFile, 'rb') as f:

            CHUNK_SIZE = 4 * 1024 * 1024

            if fileSize &amp;lt;= CHUNK_SIZE:
                smallFileUpload(client, dpBG, localFile, destPath, overwrite, dispName, silent)

            else:

                upload_session_start_result = dbx.files_upload_session_start(f.read(CHUNK_SIZE))
                cursor = dropbox.files.UploadSessionCursor(session_id=upload_session_start_result.session_id,
                                                           offset=f.tell())
                commit = dropbox.files.CommitInfo(path=destPath)

                while f.tell() &amp;lt; fileSize:
                    if ((fileSize - f.tell()) &amp;lt;= CHUNK_SIZE):
                        dbx.files_upload_session_finish(f.read(CHUNK_SIZE), cursor, commit)
                    else:
                        dbx.files_upload_session_append_v2(f.read(CHUNK_SIZE), cursor)
                        cursor.offset = f.tell()
                if not silent:
                    if dpBG == "dpbg":
                        dpbg.update(100, "", "Upload Complete")
                        dpbg.close()
                    elif dpBG == "dp":
                        dp.update(100, "", "COMPLETE!")
                        dp.close()
                    else:
                        Notify(title=SubTitle, message="[COLORyellow]%s[/COLOR] Upload [COLORlimegreen]Complete[/COLOR]!" % (dispName), duration=4000, icon=ART_URL + 'ogdb.png')
                if xbmcaddon.Addon(thisAddonID).getSetting("backres_dbox_removelocal") == 'true':
                    try:
                        os.remove(localFile)
                    except:
                        pass&lt;/PRE&gt;</description>
      <pubDate>Mon, 02 Oct 2017 20:15:20 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244756#M13805</guid>
      <dc:creator>OGMC</dc:creator>
      <dc:date>2017-10-02T20:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244778#M13814</link>
      <description>&lt;P&gt;You can see the version by printing dropbox.__version__. The latest release is v8.2.0. If you're not already on that, please upgrade and try again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are seeing this on the latest version, please share the whole stack trace. I can't seem to reproduce this issue with v8.2.0, and it's unclear in which line of your code this is occuring.&amp;nbsp;Thanks in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 21:05:54 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244778#M13814</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-10-02T21:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244784#M13819</link>
      <description>&lt;P&gt;Hi Greg,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for getting back to me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm a tad confused. I get 0.0.0 when i print&amp;nbsp;&lt;SPAN&gt;dropbox.__version__&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 02 Oct 2017 21:31:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244784#M13819</guid>
      <dc:creator>OGMC</dc:creator>
      <dc:date>2017-10-02T21:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244913#M13842</link>
      <description>If it's printing 0.0.0, that should indicate that your copy was just pulled from master, as opposed to installed from a particular release.&lt;BR /&gt;&lt;BR /&gt;Do you know recall you got the SDK exactly? For example, if you cloned it, please pull the latest from master. Alternatively, please install the latest, e.g., using pip.</description>
      <pubDate>Tue, 03 Oct 2017 15:40:40 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244913#M13842</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-10-03T15:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244943#M13852</link>
      <description>&lt;P&gt;Yes I had downloaded the master from github.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've now downloaded 8.2.0 but I'm getting the same error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the stack trace.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;Traceback (most recent call last):
                                              File "/Users/John/Library/Application Support/Kodi/addons/script.module.python.koding.aio/lib/koding/router.py", line 133, in Run
                                                master_modes[mode]["function"](*evaled_args)
                                              File "/Users/John/Library/Application Support/Kodi/addons/plugin.program.ogtools/resources/lib/modules/dbox.py", line 296, in browseUploader
                                                largeUploader(localFile=file2upload, dispName=fileName, silent=False)
                                              File "/Users/John/Library/Application Support/Kodi/addons/plugin.program.ogtools/resources/lib/modules/dbox.py", line 208, in largeUploader
                                                dbx.files_upload_session_finish(f.read(CHUNK_SIZE), cursor, commit)
                                              File "/Users/John/Library/Application Support/Kodi/addons/script.module.dropbox2/lib/dropbox/base.py", line 2034, in files_upload_session_finish
                                                f,
                                              File "/Users/John/Library/Application Support/Kodi/addons/script.module.dropbox2/lib/dropbox/dropbox.py", line 250, in request
                                                returned_data_type, obj, strict=False)
                                              File "/Users/John/Library/Application Support/Kodi/addons/script.module.dropbox2/lib/dropbox/stone_serializers.py", line 523, in json_compat_obj_decode
                                                data_type, obj, alias_validators, strict, old_style, for_msgpack)
                                              File "/Users/John/Library/Application Support/Kodi/addons/script.module.dropbox2/lib/dropbox/stone_serializers.py", line 536, in _json_compat_obj_decode_helper
                                                data_type, obj, alias_validators, strict, old_style, for_msgpack)
                                              File "/Users/John/Library/Application Support/Kodi/addons/script.module.dropbox2/lib/dropbox/stone_serializers.py", line 581, in _decode_struct
                                                old_style, for_msgpack)
                                              File "/Users/John/Library/Application Support/Kodi/addons/script.module.dropbox2/lib/dropbox/stone_serializers.py", line 605, in _decode_struct_fields
                                                old_style, for_msgpack)
                                              File "/Users/John/Library/Application Support/Kodi/addons/script.module.dropbox2/lib/dropbox/stone_serializers.py", line 557, in _json_compat_obj_decode_helper
                                                data_type, obj, alias_validators, strict, False, for_msgpack)
                                              File "/Users/John/Library/Application Support/Kodi/addons/script.module.dropbox2/lib/dropbox/stone_serializers.py", line 887, in _make_stone_friendly
                                                raise bv.ValidationError(e.args[0])
                                            ValidationError: client_modified: attribute of type 'NoneType' is not callable&lt;/PRE&gt;
&lt;P&gt;I hope this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 17:24:05 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/244943#M13852</guid>
      <dc:creator>OGMC</dc:creator>
      <dc:date>2017-10-03T17:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245163#M13883</link>
      <description>Thanks! Since you downloaded the source, did you run `python setup.py install` as instructed here?&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://github.com/dropbox/dropbox-sdk-python#installation" target="_blank"&gt;https://github.com/dropbox/dropbox-sdk-python#installation&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Please do so if you haven't already. If you did, did you get any errors?</description>
      <pubDate>Wed, 04 Oct 2017 15:58:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245163#M13883</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-10-04T15:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245199#M13894</link>
      <description>&lt;P&gt;Hi yes, I did that but same outcome. (no errors on install)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just noticed the item does actually upload but looks like the return meta is giving a none type for client mod and it doesn't like it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I maybe misreading that but still getting the error.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Oct 2017 18:47:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245199#M13894</guid>
      <dc:creator>OGMC</dc:creator>
      <dc:date>2017-10-04T18:47:03Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245366#M13912</link>
      <description>Thanks! We're looking into it.</description>
      <pubDate>Thu, 05 Oct 2017 14:26:55 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245366#M13912</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-10-05T14:26:55Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245435#M13918</link>
      <description>Also, can you let us know what version of Python itself you're using? Thanks in advance!</description>
      <pubDate>Thu, 05 Oct 2017 17:35:52 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245435#M13918</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-10-05T17:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245441#M13919</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Python 2.7&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 17:57:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245441#M13919</guid>
      <dc:creator>OGMC</dc:creator>
      <dc:date>2017-10-05T17:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245480#M13922</link>
      <description>&lt;P&gt;We could use a bit more information. Can you run the following and share the output?&amp;nbsp;Thanks in advance!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;python -c 'import dropbox;print dropbox.__version__;print dropbox.__package__;print dropbox.__file__'&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Oct 2017 20:29:33 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245480#M13922</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-10-05T20:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245482#M13923</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here you go.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;8.2.0&lt;BR /&gt;dropbox&lt;BR /&gt;/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/dropbox-8.2.0-py2.7.egg/dropbox/__init__.pyc&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and here it is from the kodi module i made&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;8.2.0&lt;BR /&gt;dropbox&lt;BR /&gt;/Users/John/Library/Application Support/Kodi/addons/script.module.dropbox2/lib/dropbox/__init__.pyo&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2017 20:52:26 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245482#M13923</guid>
      <dc:creator>OGMC</dc:creator>
      <dc:date>2017-10-05T20:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245641#M13936</link>
      <description>&lt;P&gt;Ok after some investigating I have noticed the first attempt gives no errors, all subsequent attempts give the client modified nonetype error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;After some googling I finally came accross some info that this is a known issue with datetime in python.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found this:&lt;/P&gt;
&lt;PRE&gt;try:
    datetime.strptime(date_string, format)
except TypeError:
    datetime(*(time.strptime(date_string, format)[0:6]))&lt;/PRE&gt;
&lt;P&gt;So I decided to manually tweak the make stone friendly function in the api to this.&lt;/P&gt;
&lt;PRE&gt;def _make_stone_friendly(
        data_type, val, alias_validators, strict, validate, for_msgpack):
    """
    Convert a Python object to a type that will pass validation by its
    validator.

    Validation by ``alias_validators`` is performed even if ``validate`` is
    false.
    """
    if isinstance(data_type, bv.Timestamp):
        try:
            ret = datetime.datetime.strptime(val, data_type.format)
        except:
            print("datetime.datetime.strptime(val, data_type.format) returned NoneType. Trying alterntive")
            pass
        try:
            ret = datetime.datetime(*(time.strptime(val, data_type.format)[0:6]))
        except (TypeError, ValueError) as e:
            raise bv.ValidationError(e.args[0])
    elif isinstance(data_type, bv.Bytes):
        if for_msgpack:
            if isinstance(val, six.text_type):
                ret = val.encode('utf-8')
            else:
                ret = val
        else:
            try:
                ret = base64.b64decode(val)
            except TypeError:
                raise bv.ValidationError('invalid base64-encoded bytes')
    elif isinstance(data_type, bv.Void):
        if strict and val is not None:
            raise bv.ValidationError("expected null, got value")
        return None
    else:
        if validate:
            data_type.validate(val)
        ret = val
    if alias_validators is not None and data_type in alias_validators:
        alias_validators[data_type](ret)
    return ret&lt;/PRE&gt;
&lt;P&gt;I can say it is now working every time without error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm sure you don't like the code being altered and I can totally understand that but if you think the code doesn't look like it will yeild any issues then I'm happy to do a pull request on github.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Oct 2017 16:43:08 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245641#M13936</guid>
      <dc:creator>OGMC</dc:creator>
      <dc:date>2017-10-06T16:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Upload Error with v2 (migration from v1)</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245648#M13939</link>
      <description>Thanks! I'm glad to hear you got this working. I'll ask the team to take a look over to see if this is a change that should be added to the SDK.</description>
      <pubDate>Fri, 06 Oct 2017 17:19:13 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Upload-Error-with-v2-migration-from-v1/m-p/245648#M13939</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2017-10-06T17:19:13Z</dc:date>
    </item>
  </channel>
</rss>

