The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
10k views

get contact info from android contact picker

hi im trying to call the contact picker, get the persons name, phone and e-mail into strings and send them to another activity using an intent. So far this works Intent intent = new ...
5
votes
0answers
52 views

Android 3.0 - How to retrieve ALL contacts via ContactsContract

I am working on an Android Honeycomb (v3.0) application that has a requirement of displaying ALL contacts stored within the Google account that is registered on the device. One of the problems I am ...
5
votes
7answers
871 views

Generating an inline-image with java gwt

I'm trying to write an inline-image using Java GWT. The image however does not display: <img ...
4
votes
1answer
174 views

How to get create an access token in ruby on rails for gmail contacts

I am using Omniauth to request the user gmail credentials, so I can request the user friends/contacts later. Right now I am getting the friends list inside of the OmniauthCallbacks controller, using ...
4
votes
1answer
325 views

Pulling Gmail's 'Other Contacts' group via the Google Contacts API

I'm trying to pull my Gmail contacts, so I can auto-complete on the 3,000 or so contacts I have within Gmail. Using the Google Contacts Data API, I'm able to get a list of (1) default contacts and ...
4
votes
1answer
176 views

How to interact with Google Contacts using XML and HTTP?

I am trying to understand this document. But I am not getting how to implement it in my previous code which I did according to this link . Can anyone provide me sample code to proceed with. I am ...
3
votes
1answer
129 views

get name from google contact api from javascript

I am trying to get contact name, email and phone from google contact api from contact feed http://www.google.com/m8/feeds/contacts/default/full var entries = result.feed.entry; for (var i = 0; i ...
3
votes
1answer
111 views

adding contacts to my gmail account using google contacts api through my rails app

I want to use google contacts api to add contacts into my gmail account throgh my rails app. Is it possible to do so??
3
votes
1answer
312 views

Google API Contacts query by Extended Property

I've upload contacts from my application to Google Contacts with an external code property named extcod. ExtendedProperty property = new ExtendedProperty(); property.Name = ...
3
votes
1answer
171 views

Help with Google Contacts

List<string> ls = new List<string>(); Feed<Contact> f = cr.GetContacts(); foreach (Contact e in f.Entries) foreach (EMail el in e.Emails) if ...
3
votes
2answers
272 views

Are there any non-Zend Google Contacts library for PHP?

I need that because i'm already using the Agavi framework and things will get messy if i tried integrating Zend too. Is there an equivalent of facebook-php sdk for Google Contacts?
3
votes
2answers
723 views

Google OAuth and local dev

i am trying to use Google OAuth to import a user 's contacts. In order to get a consumer and secret key for you app you have to verify your domain at https://www.google.com/accounts/ManageDomains ...
3
votes
2answers
603 views

How to have a read access to google.com/contacts from an android handset?

In my android application, I would like to retrieve the birthday field from google.com/contacts, as this field isn't synchronised in the android contacts application. How can I have a read access to ...
2
votes
1answer
28 views

Export GMail Contacts via Unattended Script

GMail has a handy-dandy window that lets you export all of your contacts as a CSV file. If you do this then look at your browser's history, you see that the URL used to initiate the download looks ...
2
votes
3answers
507 views

“Unknown authorization header” while fetching google contacts using php, (zend) gdata and 2 legged oauth

I am writing a 2 Legged OAuth app (Google Marketplace app) using zend gdata library. I need to fetch google contacts. Code as given below. require_once 'Zend/Oauth/Consumer.php'; $oauthOptions = ...
2
votes
1answer
82 views

Parameter passing in Oauth1 - google API

I have authenticated the the user with scope of Google mail and Google contacts using Oauth1. Fetching mail is working perfectly fine with imaplib While calling contacts API I'm getting the responds ...
2
votes
2answers
335 views

Google Contacts API XML parsing with PHP

I have an xml feed from Google Contacts API, but I have trouble reading <gd: tags. $xml = simplexml_load_string($google_contacts); This reads every elements except the <gd: tags, which ...
2
votes
1answer
185 views

Problem updating Google Contact Picture in Ruby

I am trying to write a ruby app to update Google Contact Photos but I cant get the upload working. Im not sure if I have misunderstood the Google API but this is what I have so far: ...
2
votes
0answers
423 views

Get a 401 error (authorization required) when adding parameters to my query

I am trying to get a user contacts data through the Google Data API and am facing a problem: I get this 401 error message when I specify a parameter to my query (for ex in my case it's ...
2
votes
1answer
1k views

How to programmatically assign a picture (Bitmap) to a contact?

The title says it all, I have a variable of type Bitmap and I would like to assign it to a Contact from my contact list as the CalledID picture, how would I do that?
2
votes
1answer
573 views

Google Contacts API - No Redirection

I am currently working on Contact Importer web app (in PHP) so I will be able to grab email address from a user's account on Gmail, Yahoo, etc and use them for my own evil purposes. Just kidding, my ...
1
vote
1answer
47 views
+50

Gender being changed to “Directory server” on Google Contacts insert

I'm using the gdata-python-client library (http://code.google.com/p/gdata-python-client/) to insert contacts into a Google account. When I set the gender like this: google_contact.gender = ...
1
vote
2answers
38 views

Unable to fetch Gmail Contacts in Android app - Can fetch from Desktop Java App with same code

My Java Application is able to connect and fetch my gmail contacts but Android Application is throwing exception "Error connecting with login URI". Here is the code from both applications. I tried ...
1
vote
1answer
43 views

Unable to pull contacts from gmail after GWT 2.4 upgrade

I am currently running into an issue when attempting to pull contacts from a users gmail account. Prior to upgrading to GWT 2.4 this worked as required, since upgrading to 2.4 (from 2.3) we are ...
1
vote
0answers
28 views

ABPersonSetImageData works fine but contact's photo doesn't sync with Google

I've develop an App which set an image to my contact. It's working fine, my contact has the correct image in the iPhone AddressBook App. I sync my AddressBook with Google and my contact's image ...
1
vote
1answer
74 views

How to update Google Contact's photo via PHP?

I am coding a site in PHP that will allow a user to view all his Google Contacts' names and profile photos in one long list. Then the user can drag-n-drop new photos to replace the existing profile ...
1
vote
1answer
46 views

ZendFramework Contact Query

I am using the following // perform query and get feed of all results $query = new Zend_Gdata_Query( 'http://www.google.com/m8/feeds/contacts/default/full'); $query->maxResults = 1000; ...
1
vote
1answer
57 views

Using Google OAuthUtil in a desktop application

I am building a Desktop application that interacts with Google Contacts. I have been trying to authenticate the application using google supplied OAuthUtil, but cant get it to work... it seems it is ...
1
vote
1answer
156 views

“My Contacts” group google contacts

I just wrote a small python script that gets me all the groups on my google contacts list, however for some reason "My Contacts" does not show up in that. I'm using the 3.0 api and was having similar ...
1
vote
1answer
169 views

Google Contacts API Not Returning System Groups

https://www.google.com/m8/feeds/groups/default/full/6 That should return a list of all the contacts in the system group My Contacts, but it says "Group not found." When I request a list of all the ...
1
vote
0answers
74 views

Accessing private thumbnails provided by the Google Portable Contacts API

I'm currently using the Google Portable Contacts API to import my users' Google contacts to a web application. When listing the thumbnail URLs for a given contact, the API returns one of the ...
1
vote
2answers
159 views

Problem with OAuth in accessing Google Contacts

I am trying to import the contacts of a person using google contacts API in the following PHP code . It uses OAuth 1.0 protocol : <?php $consumer_key="www.spats.in"; ...
1
vote
1answer
228 views

Google Contacts API issue

Am trying to use google contacts api, if I use https://www.google.com/m8/feeds/contacts/default/full am getting 25contacts, but if i try to get more contacts in single request, it gives me ...
1
vote
0answers
191 views

How to get google contacts but not gmail contacts?

I'm extracting the information of contacts stored in the phone. I'm working on 2.1. I'm able to extract every RawContacts from the query including "auto gmail contacts" which I do not need. I've ...
1
vote
1answer
370 views

how to parse google contact feed (xml or json) using php

I'm trying to parse the google contact feed using php, below is the example of the xml feed that i get from google <entry> ...
1
vote
4answers
2k views

import contacts from gmail/hotmail/yahoo to php

i would like to import contacts from gmail/hotmail/yahoo to my php applications just like those found in social network. i've read how gmail does it but im still not very clear about it. it says i ...
1
vote
1answer
280 views

In Google Talk, how to send a message to person that is not in my friend list?

In Google Talk, how to send a message to person that is not in my friend list? I work on an application that notify customers of a bank about change of their accounts. When I send a message to a ...
1
vote
1answer
736 views

“If-Match or If-None-Match header or entry etag attribute required” Error when trying to update a contact on google contacts using Zend Framework

Hi guys I'm trying to update my google contacts using the zend framework but I'm getting the following error: Expected response code 200, got 403 If-Match or If-None-Match header or entry etag ...
1
vote
1answer
162 views

Programmatically inviting contacts to Google Chat

I'm writing a sync application for Lotus Notes and Google (I know, there are some of them out there, but they are either not free or sync only calendar (or only contacts) and most of them cannot deal ...
1
vote
1answer
159 views

Best way to associate phone numbers with names

My application stores lots of its users friends' phone numbers. I'd like to allow users to associate names with these phone numbers, but I don't want to make users manually type in names (obviously). ...
1
vote
0answers
373 views

How to get “AuthSub ” token in C#? For google APPS Contacts?

I fount this code on net : HttpWebRequest update = (HttpWebRequest)WebRequest.Create(**editUrl** ); // editUrl is a string containing the contact's edit URL update.Method = "PUT"; ...
1
vote
4answers
7k views

Get address in contacts using Android SDK

I'm trying to retrieve the contact's name, phone number, and address from the android contact list. The name and phone are pretty straight forward but the address seems to not be accessible with the ...
1
vote
1answer
812 views

Gmail contacts API limitations workaround

Given that the Google Contacts java API has not exposed all the fields ...
0
votes
1answer
8 views

Google Contacts API for Organization Directory

I want to retrive all the contacts in my organization directory via API. I tried querying using OAuth Playground but I didn't get any group for my "Directory". I want to fetch all the people in my ...
0
votes
0answers
20 views

get picture, name, & email from a specific persons contact list rails

Simply put I want a user to be able to login to a service (google, plaxo, facebook) list all of their friends or contacts and be able to add that information to my database. Currently I am using the ...
0
votes
1answer
48 views

Google contacts api on android

I've been at this for days and im getting confused. I've read in many places that the java client google provides "wont work on android", and it doesn't. Could anybody point me in the right ...
0
votes
0answers
53 views

Google contact api v3 authentication

I try use new google contacts API. My task is simple - retrieve contacts from static(my personal) domain account. I register my application at APIs Console and get ClientId,ClientSecret So I try ...
0
votes
1answer
71 views

Google portable contacts api sort order not working

I am using this path to grab contacts from google after user is oauth2 authenticated. path = ...
0
votes
0answers
55 views

Unable to delete domain shared contacts using GAE Java API

I am trying to write an application that adds/updates/deletes domain shared contacts in to Google using Java API. I am getting following exception while I try to delete the created contact from ...
0
votes
0answers
49 views

How to view Domain Shared contacts in Google

I am new to GAE. I am trying to create an application which creates/updates/deletes domain shared contacts in Google. Following is the code I am using for creating a domain shared contact. ...

1 2