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