Followed the below link
https://developers.google.com/google-apps/calendar/quickstart/java
working only for gmail calendar. How to send calendar event to non gmail accounts?
Many thanks.
You can send calendar invites even to non-gmail users. Just include their email in the attendees[].email array property. Don't forget to set sendNotifications to true to send notifications about the creation of the new event to the attendees. You can give this a try in the Events.insert Try-it.
If you've sent emails to non Gmail users and they haven't received it, it maybe that it was placed in spam folders as mentioned in
Event Invite for non-Google calendar users.
Related
We have python website where events are created by users.
We want to sync the created events on python website on google calendar based for logged user email address (calendar attached with logged in user email address)
To show these events on calendar we need to call (event create/ event update /event delete ) Api's based on user email address
Please suggest if any documentation available.
I was creating new google calendar event using google calendar API through service account email in c#. I succeeded in creating the event but the invitation mail I received has service account email address as 841212832218-vaqgheuempaamjpprglaa9d36q55gq7a#developer.gserviceaccount.com instead of the actual gmail id as rags1.2#gmail.com. Could you please let me know anybody has the solution for this.
Thanks
I use different ways to send events to Google Analytics on my website. Some user interface interations sends using ga.js but some user actions (eq.: succesful auth or transaction) is possible to send only from server-side (PHP) using measurment protocol.
Events are both successfully sent and come to GA, but there's no link between JS and PHP events. For example, user entered website, clicked some buttons (stats sent by JS) and made a transaction (stats sent by PHP). After that i see JS events linked to one session but PHP event isn't linked. It just displayed as separate event.
What information should i store and pass to measurment protocol to have that events linked?
You need to send the client id (as set in the ga cookie, because this is the key GA uses to group visits into sessions) and possibly the user ip override and user agent override.
in the site in which I'm working the registration is mandatory to complete an order (is an ecommerce site). In the registration process, users have to fill in a registration form and then submit it. An email will be sent to users to confirm the account. After the confirmation (click on a link sent through email) the account is active.
I would to keep track of the user which complete the registration and then confirm his account clicking on the confirmation link in the email.
Basically, my questions are :Do users which submit the registration form, confirm their account? then, Do users which confirm their account make a purchase on the website?
I know how to track the submitting of the form (with event tracking or destination goal, it depends), but I don't know how to put a trackable link in the confirmation email. I can't use URL Builder, because the confirmation link is generated automatically and it depends on the account itself (each link is unique for the account). How can I keep track of it?
One solution for you is to include a Google Analytics _trackEvent call on the email activation page. Docs here:
https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide
This is the method we use to do something similar on our site.
Is it possible, with the Google Calendar API / Zend Gdata, to get the user's google email address, after he successfully authenticated with AuthSub and I have an access token?
I have a problem with some users having multiple Gmail and Google Apps accounts, and then not remembering which one they've used to Sync with my service and having the impression that the sync doesn't work. I'd like to display them the Google Account they have first authenticated with.
Have you tried the experimental settings API? It looks like it returns the user's name and email address in the author section.