Questions tagged [google-profiles-api]

There is no google profiles api please see Google people api.

44 questions
1
vote
2 answers

Need to find first & Last name from google Contact API

I need to fetch google contact using jquery. and i have success fully implement. but what the issue is i unble to fetch the name of that contact. google is just providing me email address of that user. no other information is provided by user. so am…
1
vote
1 answer

How do I access User Defined Fields from the Profiles API using Directory API

We have an application that manages User Accounts in Google. All customers considered we are managing roughly 1 million accounts. We have already built and deployed a Directory API based replacement for our Provisioning API based solution. One of…
1
vote
1 answer

Will deprecated Google Sign-In scopes stop working?

Looks like Google has deprecated the following scopes: https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email When will they completely stop working?
Saqib Ali
  • 3,953
  • 10
  • 55
  • 100
1
vote
1 answer

Migrate from Google Data (GData) APIs to new Google APIs Client Library for Java

In our organization we have an in-house developed web based application that make use of Google Data (GData) APIs(gdata-java-client) API to manage email user accounts, email settings, nickname, profile updates , contact management. This application…
1
vote
1 answer

Google Data API - Merge Contacts

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…
Jacob S
  • 11
  • 1
1
vote
2 answers

Google Contact API - 401 Target Invalid

my project is using php with gmail oauth and facing this error as 401 Target Invalid where the other project works fine using the same way (different ID and Secret but same domain). For ex:- xxx.com/abc xxx.com/def HTTP/1.1 401 Token invalid -…
1
vote
0 answers

Bad Request while updating contact via Google Contacts API

currently I'm working on an app, adding and updateting a contact via google contacts api. It works so far, but I'm having an issue at the update procedure.. My workflow is this: Get the specific contact, edit/add some properties, and update it to…
1
vote
1 answer

how to get suspended user status from google api using oauth

I am looking for a way to get from any google apis a list of not-suspended users in an organization, using oath authorization. google profile api has oauth, but the user list returned does not contain the isSuspended flag. google provisioning api…
bazik
  • 609
  • 3
  • 18
1
vote
1 answer

Google Contacts API not returning contacts with a directory profile

I am trying to search through "my contacts" on my google account. The account belongs to a Google for Business domain. I have already managed to retrieve all contacts which works by querying to the following…
1
vote
2 answers

Retrieval/Changing of Profile Picture Google Profile API

I am able to retrieve profile information via an AJAX call in Jquery using this code: var url = 'https://www.google.com/m8/feeds/profiles/domain/{DOMAIN_NAME}/full'; $.ajax({ url: url +'?access_token=' …
rog_perez
  • 11
  • 2
0
votes
0 answers

Google Contacts API credentials issue python

I have basic code for getting google contacts and printing out their information as a desktop application. Currently I do this with OAuth2 to get the access token, etc. But I'm having an issue because I want this to be as automated as possible, and…
0
votes
1 answer

Google apps api created users created are suspended

I am using google apps provisioning api from java (Idm - Midpoint). Whenewer i create test user it is supended with suspended reason weblogin reqiered. Then account needs to be authenticated by sms. Other istallation of this software is working fine…
0
votes
0 answers

Google Contacts API with codeigniter

I have a CodeIgniter application and I want access Google Contact API with OAuth solution. I want changes to be made in the Google Contact API when they are made in the database. Already there is a Google account, have a client ID and client…
0
votes
1 answer

Google Contacts v3 API: groupMembershipInfo for a contact's individual email address?

How do I retrieve individual email addresses that are members of a Google Contact Group? Using the API, I seem to be able to only see which contacts are members of a group - contacts that might have multiple email addresses. However, the Gmail UI…
0
votes
0 answers

GdataContact fetched user photo is at low resolution

I am using the Google data contact API to fetch a user`s photo. However, it appears the photo returned are about low resolution. is that possible to get a higher resolution photo? Below are the code I am using to fetch the photo: **NSURL *imageURL =…