我正在尝试使用运行在树莓派上的简单python脚本访问google calendar API。
此脚本来自示例here:
from oauth2client import file, client, tools
store = file.Storage('home/pi/brief/token.json')
creds = store.get()
从命令行运行..可以正常工作,但是作为服务(systemctl)运行时,它会退出,并说:
python[27500]: store = file.Storage('home/pi/brief/token.json')
python[27500]: AttributeError: 'file' object has no attribute 'Storage'
我这里必定缺少基本的东西。提前非常感谢!
答案 0 :(得分:0)
我重新安装了oauth2client并重新配置了服务,现在它可以工作了。把我打败了。谢谢大家的努力。