google-contacts

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 Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI); startActivityForResult(intent, 1); @Override public void onActivityResult(in...

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

Hi all, 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? ...

Problem getting contact groups - google contacts api, js lib

I am using the Google contacts api to retrieve contacts. That works FINE. I have been asked to get the groups that each contact is associated with and whatever I tried seem to have failed me. I am not going to post my code here but assume it works (other than the group stuff). I am iterating through **result.feed.entry** where my contact...

Getting group names your contacts belong to using the gdata module

Hello I am trying to find out how to get the title of groups the contact belongs to. This is how I am getting my other contact information: query = gdata.contacts.service.ContactsQuery() query['showdeleted'] = 'true' query.updated_min = str(lastKnownTime) query.max_results = 5000 feed = gd_client.GetContactsFeed(query.ToUri()) insertCo...

oAuth/Gmail from ASP.NET - "The remote server returned an error: (400) Bad Request"

I have been banging my head on this for a long time now no avail. Hoping some fellow SOers can help out. using oAuth.net library for the Gmail Contacts API The request seems well-formed and I have stepped through the requests, and cannot discern anything wrong. Tried checking if the timestamp is an issue - it seems that was a common i...

Google Contacts API not showing emails, nor max results

I'm using the Google Contacts API to get back formatted JSON, hopefully containing ALL of a user's contacts' email addresses. I use this information to search my database for the user's friends. Neither of these results occur. Here's the URI that's called (broken up by paramater for slightly better readability: http://www-opensocial.g...

error getting google contacts using gdata authSub with java

I can successfully get a google AuthSub Token But on running this code im getting the exception java.lang.NullPointerException: No authentication header information The code is ... .... ContactFeed contactFeed = getContactList(token); ... .... public ContactFeed getContactList(String token) { ContactFee...

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? ...