google-shared-contacts

This app isn't verified This app hasn't been verified by Google yet. Only proceed if you know and trust the developer

你。 提交于 2020-04-05 11:13:52
问题 Hi I have developed an web application using google app engine, for google shared domain contact , Its working fine when I am running it in the localhost but when I deploy that application into google app engine it showing warning screen before user conforming for consent(as shown in the image). I am using 2 scope http://www.google.com/m8/feeds/contacts/ and https://www.googleapis.com/auth/userinfo.email . when I try to add a user information in the google shared contact I am getting a

This app isn't verified This app hasn't been verified by Google yet. Only proceed if you know and trust the developer

耗尽温柔 提交于 2020-04-05 11:11:04
问题 Hi I have developed an web application using google app engine, for google shared domain contact , Its working fine when I am running it in the localhost but when I deploy that application into google app engine it showing warning screen before user conforming for consent(as shown in the image). I am using 2 scope http://www.google.com/m8/feeds/contacts/ and https://www.googleapis.com/auth/userinfo.email . when I try to add a user information in the google shared contact I am getting a

This app isn't verified This app hasn't been verified by Google yet. Only proceed if you know and trust the developer

我们两清 提交于 2020-04-05 11:10:41
问题 Hi I have developed an web application using google app engine, for google shared domain contact , Its working fine when I am running it in the localhost but when I deploy that application into google app engine it showing warning screen before user conforming for consent(as shown in the image). I am using 2 scope http://www.google.com/m8/feeds/contacts/ and https://www.googleapis.com/auth/userinfo.email . when I try to add a user information in the google shared contact I am getting a

Client-side retrieval of Google Contact pictures

孤街醉人 提交于 2020-01-12 08:05:11
问题 I'm fetching google contacts in a webapp using the Google JavaScript API and I'd like to retrieve their pictures. I'm doing something like this (heavily simplified): var token; // let's admit this is available already function getPhotoUrl(entry, cb) { var link = entry.link.filter(function(link) { return link.type.indexOf("image") === 0; }).shift(); if (!link) return cb(null); var request = new XMLHttpRequest(); request.open("GET", link.href + "?v=3.0&access_token=" + token, true); request

Google Data API - Merge Contacts

佐手、 提交于 2019-12-20 04:24:17
问题 Does the Google Data API have the ability to merge two contacts based on their entry ids? My place of employment allows multiple email addresses for the same person. I'm writing an application to remove alias email addresses and merge duplicate contacts to prevent losing Calendar appointments. The application detects duplicate Contacts based on the person's internal LDAP uid, but the Google Data API doesn't appear to have the ability to merge Contacts based on two entry IDs unless I'm

Creating a Google shared contact using the API - contact is created but not in the shared Directory

落花浮王杯 提交于 2019-12-11 04:45:51
问题 I'm currently using the shared_contacts_profiles.py script to load contacts from an external system into our Google Shared Domain contacts. I'd like to make the process more automated so I've tried to create a shared contact (with just a full name and email address) using a basic python script. The contact is created but it gets added to the administrator's contacts and not the Directory. My code is #!/usr/bin/python import atom import gdata.data import gdata.contacts.client import gdata

Google Contacts API v3 does not return system groups

若如初见. 提交于 2019-12-08 12:48:25
问题 I found that Google Contacts API v3 does not return system groups when I fetch feed of all contacts: https://www.google.com/m8/feeds/contacts/default/full But if I supply v2 via GET param: https://www.google.com/m8/feeds/contacts/default/full?v=2 all system groups are returned for contact entries. Same thing when i try to fetch list of groups: https://www.google.com/m8/feeds/groups/default/full Is there another way to receive system groups? Or v3 just does not support receiving system groups

Client-side retrieval of Google Contact pictures

微笑、不失礼 提交于 2019-12-03 15:46:25
I'm fetching google contacts in a webapp using the Google JavaScript API and I'd like to retrieve their pictures. I'm doing something like this (heavily simplified): var token; // let's admit this is available already function getPhotoUrl(entry, cb) { var link = entry.link.filter(function(link) { return link.type.indexOf("image") === 0; }).shift(); if (!link) return cb(null); var request = new XMLHttpRequest(); request.open("GET", link.href + "?v=3.0&access_token=" + token, true); request.responseType = "blob"; request.onload = cb; request.send(); } function onContactsLoad(responseText) { var

Google Data API - Merge Contacts

若如初见. 提交于 2019-12-02 03:37:27
Does the Google Data API have the ability to merge two contacts based on their entry ids? My place of employment allows multiple email addresses for the same person. I'm writing an application to remove alias email addresses and merge duplicate contacts to prevent losing Calendar appointments. The application detects duplicate Contacts based on the person's internal LDAP uid, but the Google Data API doesn't appear to have the ability to merge Contacts based on two entry IDs unless I'm overlooking the contacts API documentation This describes how to manually merge the contacts or use the

Unifying OAuth handling between gdata and newer Google APIs

寵の児 提交于 2019-12-01 12:58:32
I'm working with the Google Contacts API and Google Calendar API in Python. The former is a GData API and the latter is a Google API... API, so while clients are available, they're each covered by separate clients -- here's GData , and Google API . The problem I'm running into working with these clients is that they both have their own way of dealing with OAuth2. The GData library provides gdata.gauth.token_to_blob(auth_token) and gdata.gauth.token_from_blob(auth_token) methods to translate auth tokens to/from strings to store in a database, while the google-api library provides a method on