view example_crates/drive_example/README.md @ 171:714165191d0d

Merge pull request #6 from mike-kfed/youtube_example minimal youtube API example listing top 5 videos on youtube
author Lewin Bormann <lbo@spheniscida.de>
date Thu, 10 Dec 2020 13:19:58 +0100
parents 59ccdfd217b2
children
line wrap: on
line source

# `drive_example`

List your Google Drive root directory, or upload a file.

```shell
$ cargo run
# Lists all objects in your root folder of Drive.
...
$ cargo run -- ~/some_file.txt
# Uploads the given file to your root folder, and prints the involved File
# objects and the used request parameters.
...
```

Please note that you need a client secret to run this binary. Download it from
[Developer Console](https://console.developers.google.com) and place it into the
file `client_secret.json` in your working directory so that `drive_example` can
find it.

Run with `RUST_LOG=debug` in order to see an accurate record of HTTP requests
being sent and received.