我创建了一个OAuth密钥,它应该使我能够通过遵循谷歌驱动器ruby库文档来查看和获取谷歌工作表中的内容(即CLI访问一个为所有kabaminc.com人员提供读/写权限的工作表(,但是,当我试图从Fastlane操作中基于文档id提取时,我在Google Drive根目录下的Google工作表出现了一个文件未找到错误,共享权限为"任何人都可以找到并查看":
/<path>/.rvm/gems/ruby-2.5.1/gems/google-api-client-0.21.2/lib/google/apis/core/http_command.rb:218:in `check_status': [!] notFound: File not found: <doc_id> (Google::Apis::ClientError)
我确实检查了钥匙,并确保范围是正确的:
"scope": [
"https://www.googleapis.com/auth/drive",
"https://spreadsheets.google.com/feeds/"
],
作为一点可能相关也可能不相关的补充信息,我的组织使用同步到Active Directory的Okta;因此,要连接到G Suite,我使用我的Okta凭据。
使用Ruby 2.5.1与以下相关宝石:
- 谷歌api客户端(0.24.30.21.2(
- 谷歌驱动(2.1.12(
- 谷歌授权(0.7.1,0.6.7(
- 快车道(2.107.0(
来自Gemfile.lock:
fastlane (2.107.0)
CFPropertyList (>= 2.3, < 4.0.0)
addressable (>= 2.3, < 3.0.0)
babosa (>= 1.0.2, < 2.0.0)
bundler (>= 1.12.0, < 2.0.0)
colored
commander-fastlane (>= 4.4.6, < 5.0.0)
dotenv (>= 2.1.1, < 3.0.0)
emoji_regex (~> 0.1)
excon (>= 0.45.0, < 1.0.0)
faraday (~> 0.9)
faraday-cookie_jar (~> 0.0.6)
faraday_middleware (~> 0.9)
fastimage (>= 2.1.0, < 3.0.0)
gh_inspector (>= 1.1.2, < 2.0.0)
google-api-client (>= 0.21.2, < 0.24.0)
highline (>= 1.7.2, < 2.0.0)
json (< 3.0.0)
mini_magick (~> 4.5.1)
multi_json
multi_xml (~> 0.5)
multipart-post (~> 2.0.0)
plist (>= 3.1.0, < 4.0.0)
public_suffix (~> 2.0.0)
rubyzip (>= 1.2.2, < 2.0.0)
security (= 0.1.3)
simctl (~> 1.6.3)
slack-notifier (>= 2.0.0, < 3.0.0)
terminal-notifier (>= 1.6.2, < 2.0.0)
terminal-table (>= 1.4.5, < 2.0.0)
tty-screen (>= 0.6.3, < 1.0.0)
tty-spinner (>= 0.8.0, < 1.0.0)
word_wrap (~> 1.0.0)
xcodeproj (>= 1.6.0, < 2.0.0)
xcpretty (~> 0.3.0)
xcpretty-travis-formatter (>= 0.0.3)
google-api-client (0.21.2)
addressable (~> 2.5, >= 2.5.1)
googleauth (>= 0.5, < 0.7.0)
httpclient (>= 2.8.1, < 3.0)
mime-types (~> 3.0)
representable (~> 3.0)
retriable (>= 2.0, < 4.0)
google_drive (2.1.12)
google-api-client (>= 0.11.0, < 0.22.0)
googleauth (>= 0.5.0, < 1.0.0)
nokogiri (>= 1.5.3, < 2.0.0)
googleauth (0.6.7)
faraday (~> 0.12)
jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
multi_json (~> 1.11)
os (>= 0.9, < 2.0)
signet (~> 0.7)
谢谢你们的阅读和帮助,伙计们!我为这件事伤透了脑筋。。。
编辑:工作表在我的驱动器中,而不是在团队驱动器中,因此此团队驱动器支持问题可能不相关,但可能会帮助其他人!
问题是我正在从一个使用Vim创建的文件中读取文档id(它会自动将换行符放在文件末尾(;这条换行符引起了问题。