Home > gcalcli error > gcalcli error failed to authenticate with google calendar

Gcalcli Error Failed To Authenticate With Google Calendar

gcalcli (Ubuntu) Edit Invalid Undecided Unassigned Edit You need to log in to change this bug's status. Affecting: gcalcli (Ubuntu) Filed here by: hype When: 2009-02-17 Completed: 2009-04-05 Target Distribution Baltix BOSS Juju Charms Collection Elbuntu Guadalinex Guadalinex Edu Kiwi Linux nUbuntu PLD Linux Tilix tuXlab Ubuntu Ubuntu Linaro Evaluation Build Ubuntu RTM Package (Find…) Project (Find…) Status Importance Invalid Undecided Assigned to Nobody Me Comment on this change (optional) Email me about changes to this bug report Also affects project (?) Also affects distribution/package Nominate for series Bug Description Hi, after adding a google calendar via evolution webcal (/usr/lib/evolution-webcal/evolution-webcal MY_PRIVATE__URL), i can see it properly syncronised with evolution. But using gcalcli, i get this error when trying to retrieve my agenda: gcalcli --nc agenda Error: Failed to authenticate with Google Calendar! It used to work on Intrepid; i used it via conky #${execi 900 gcalcli --nc agenda} It displayed to next 5 days in text form. Ubuntu Jaunty gcalcli 1.4-1 Add tags Tag help hype (hypeuser-lp) wrote on 2009-04-05: #1 Hmm, not sure but i just filled the configuration file under ~/.gcalclirc using: [gcalcli] user: yourusername pw: yourpassword I must have forgot to recreate the config file after reinstalling, and before filling the bug report... Changed in gcalcli (Ubuntu): status: New → Invalid See full activity log To post a comment you must log in. Report a bug This report contains Public information Edit Everyone can see this information. Mark as duplicate Convert to a question Link a related branch Link to CVE You are not directly subscribed to this bug's notifications. Subscribing... Edit bug mail Other bug subscribers Subscribe someone else • Take the tour • Read the guide © 2004-2016 CanonicalLtd. • Terms of use • Contact Launchpad Support • Blog • Careers • System status • r18232 (Get the code!)

Sign in Pricing Blog Support Search GitHub This repository Watch 1 Star 2 Fork 0 altercation/es-localbin Code Pull requests 0 Projects 0 Pulse Graphs Permalink Branch: master Switch branches/tags Branches Tags master Nothing to show Nothing to show Find file Copy path es-localbin/gcalcli Fetching contributors… Cannot retrieve contributors at this time Raw Blame History executable file 1116 lines (875 sloc) 39.4 KB #!/usr/bin/env python2 # $Id: gcalcli 61 2007-10-13 18:44:46Z insanum $ # ** The MIT License ** # https://bugs.launchpad.net/bugs/330744 # Copyright (c) 2007 Eric Davis (aka Insanum) # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # https://github.com/altercation/es-localbin/blob/master/gcalcli copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in all # copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. # # Home: http://code.google.com/p/gcalcli # # Author: Eric Davis # # Requirements: # - Python - http://www.python.org # - Google's GData Python module - http://code.google.com/p/gdata-python-client # - ElementTree Python module - http://effbot.org/zone/element-index.htm # - dateutil Python module - http://www.labix.org/pyth

2013 Authored by Dan Nanni 44 Comments Google Calendar is one of the most popular web applications. One can access or sync Google Calendar across multiple devices either via web interface or with native apps. In Linux, http://xmodulo.com/integrate-google-calendar-linux-desktop.html there are several ways to access Google Calendar natively, such as by using email client plugins (e.g., Evolution or Thunderbird) or calendar apps (e.g., Sunbird or Rainlendar). These solutions, however, typically involve installing unnecessarily bulky software which you will probably not need. If all you want is to access and get reminded by Google Calendar natively on Linux, then you can consider Google Calendar command line interface (or gcalcli), which is much more light-weight. Even better gcalcli error for Linux desktop, you can use gcalcli together with Conky, to integrate Google Calendar into your desktop theme transparently. In this tutorial, I will demonstrate how to integrate Google Calendar into Linux desktop, by using gcalcli and Conky. Install gcalcli on Linux Before installing gcalcli, verify that you are using Python 2, as gcalcli is not compatible with Python 3. To install gcalcli on Debian, Ubuntu or Linux Mint, use the following commands. $ sudo apt-get install gcalcli error failed git python-pip python-gdata python-dateutil python-gflags python-vobject python-parsedatetime $ sudo pip install google-api-python-client $ sudo pip install apiclient urllib3 $ git clone https://github.com/insanum/gcalcli.git $ cd gcalcli $ sudo python setup.py install Note: gcalcli is included in the standard repository of Ubuntu or Linux mint. However, that version is not updated with the latest features and bug fixes. So I recommend building gcalcli from the source, as documented above. To install gcalcli on Fedora, CentOS or RHEL, run the following. $ sudo yum install git python-pip python-gdata python-dateutil python-gflags python-vobject $ sudo pip install google-api-python-client $ sudo pip install apiclient urllib3 $ git clone https://github.com/insanum/gcalcli.git $ cd gcalcli $ sudo python setup.py install Google Authentication for gcalcli To be able to access Google Calendar with gcalcli, you need to go through OAuth2 authention with your Google account, in order to grant gcalcli permission to access your Google Calendar. The first time you run gcalcl, OAuth2 authentication will automatically be initiated. Thus run the following command to start. $ gcalcli agenda The command will print out a URL as shown below. At the same time, it will pop up a web browser window, and direct you to the URL. If a web browser window fails to open for any reason, you can copy and paste the URL into a web browser window manually. If you are not logged in to y

 

Related content

No related pages.