1

https://github.com/GoogleCloudPlatform/google-cloud-cpp/ https://github.com/GoogleCloudPlatform/google-cloud-cpp/blob/master/google/cloud/storage/examples/storage_quickstart.cc

构建所有可用库后,运行 storage_quickstart

/home/google-cloud-cpp/build-output/google/cloud/storage/examples/storage_quickstart bucket_name project_id

得到这个

Standard C++ exception raised: [json.exception.parse_error.101] parse error at 1: syntax error - unexpected end of input; expected '[', '{', or a literal

错误在

namespace gcs = google::cloud::storage;
gcs::Client client;

有任何想法吗 ?

4

1 回答 1

3

看起来您GOOGLE_APPLICATION_DEFAULT_CREDENTIALS的未设置,或者指向格式错误的文件。希望这里的文档:

https://googlecloudplatform.github.io/google-cloud-cpp/latest/storage/index.html

可以帮助您解决此问题。如果您需要更多帮助,请随时在 GitHub 页面中打开错误。

于 2018-10-03T13:23:32.213 回答