Sven Van Caekenberghe-2 wrote
>> On 20 Jul 2017, at 19:57, Johannes Brauer <
> brauer@
> > wrote:
>>
>> Hi!
>>
>> To download a file from Dropbox is easy:
>>
>> ZnClient new
>> https; host: 'content.dropboxapi.com';
>> addPath: '2'; addPath: 'files'; addPath: 'download';
>> headerAt: 'Autho
> On 20 Jul 2017, at 19:57, Johannes Brauer wrote:
>
> Hi!
>
> To download a file from Dropbox is easy:
>
> ZnClient new
> https; host: 'content.dropboxapi.com';
> addPath: '2'; addPath: 'files'; addPath: 'download';
> headerAt: 'Authorization' put:
> 'Bearer ';
> headerAt: 'Dropbox-API
Hi!
To download a file from Dropbox is easy:
ZnClient new
https; host: 'content.dropboxapi.com';
addPath: '2'; addPath: 'files'; addPath: 'download';
headerAt: 'Authorization' put:
'Bearer ';
headerAt: 'Dropbox-API-Arg' put: '{"path": "/demo.txt"}' ;get.
But I cannot figure out how t