10

GMail 有一个方便的窗口,可让您将所有联系人导出为 CSV 文件。如果您这样做,然后查看浏览器的历史记录,您会看到用于启动下载的 URL 类似于:

https://mail.google.com/mail/c/data/export?exportType=GROUP&groupToExport=%5EMine&out=GMAIL_CSV&tok=rQt5BTUBABA.N0gr2-zKkG9868fM7tF_FQ.fOgeVayblkGavK2AuFjZ2t

我想用 Python 编写一个批处理脚本,它会每晚自动将此 CSV 文件下载到我的服务器,但我不知道如何获取“tok”。我研究了 Google 的 OAuth,但它似乎是一个人机交互的过程,而我需要在凌晨 3 点发生这种情况,那时所有可用的人都睡着了。

这可以做到吗,或者 Google 是否让我的电子邮件帐户如此“安全”,以至于我无法通过无人值守的脚本访问它?

谢谢!布赖恩·M·埃利奥特

4

4 回答 4

5

首先使用您的帐户和密码进行身份验证(请参阅http://developers.google.com/accounts/docs/AuthForInstalledApps

auth=`curl --silent -d Email=whatever@gmail.com -d Passwd=yourpwd -d service=contacts https://www.google.com/accounts/ClientLogin|grep ^Auth=|cut -d= -f2`

获取神秘的“tok”变量。我发现它是 JSON 请求的一部分:

tok=`curl --silent --header "Authorization: GoogleLogin auth=$auth" "https://www.google.com/s2/gastatus?out=js&rc=0" |sed 's/,/\n/g' |grep AuthToken |cut -d'"' -f6`

下载 CSV(Google 格式)。这与手动执行此操作的方式完全相同:support.google.com/mail/answer/24911?hl=en

curl -s --stderr - -L -o contacts-google-whatever\@gmail.com-$(date +%Y-%m-%d-%H.%M.%S).csv -H "Authorization:GoogleLogin auth=$auth" --insecure "https://www.google.com/s2/data/exportquery?ac=false&cr=true&ct=true&df=true&ev=true&f=g2&gids=6&gp=true&hl=en-US&id=personal&max=-1&nge=true&out=google_csv&sf=display&sgids=6%2Cd%2Ce%2Cf%2C17&st=0&tok=$tok&type=4"

变量“out”可以是 google_csv、outlook_csv、vcard 之一。我的代码是 bash,您可能希望将 curl 命令更改为 Python 等效命令。重要的信息是变量和 URL。

于 2014-08-11T03:24:20.363 回答
2

我正在寻找一些类似的解决方案,因为我自己找不到任何现成的解决方案:(请忍受我的懒惰脚本,只是想让它工作:D)

#!/bin/sh 
# google api requirements:
# https://developers.google.com/gdata/articles/using_cURL
# https://developers.google.com/gdata/faq#clientlogin
# https://developers.google.com/google-apps/contacts/v3/
# https://developers.google.com/google-apps/contacts/v3/reference
# json parser:
# https://github.com/dominictarr/JSON.sh#jsonsh
# recommendation(optional):
# https://developers.google.com/accounts/docs/OAuth2UserAgent

# echo "logging in to google and saving contact with given caller-number."
Auth=$(curl --silent https://www.google.com/accounts/ClientLogin --data-urlencode Email=${Email} --data-urlencode Passwd=${Passwd} -d accountType=GOOGLE -d source=Google cURL-Example -d service=cp | grep Auth | cut -d= -f2)
curl -o ${dir}/${tmpfile} --silent --header "Authorization: GoogleLogin auth=$Auth" "https://www.google.com/m8/feeds/contacts/$Email/full?v=3.0&q=$2&alt=$Format"

可能会帮助您找到解决方案;)

于 2012-11-07T19:30:46.443 回答
0

尝试查看 gmail api:http ://code.google.com/apis/gmail/oauth/code.html

于 2012-01-19T16:51:29.073 回答
0

我找不到任何东西,所以我构建了一个小工具来执行此操作。你可以在这里找到它https://github.com/gedl/gc-csv

它可以将您的谷歌联系人导出到逗号分隔的文件、控制台或上传到 VOIP 电话 (Incom ICW1000G)

我希望它有帮助。

于 2016-05-21T00:02:14.930 回答