I am trying to use Contacts query parameters reference. See https://developers.google.com/google-apps/contacts/v3/reference#contacts-query-parameters-reference
I am building the query like this:
URL feedUrl = new URL("https://www.google.com/m8/feeds/contacts/default/full"); Query query = new Query(feedUrl); query.setMaxResults(1111); query.setStringCustomParameter("phoneNumber", "123456789");
But Google API is returning all contacts while I just want the contact who has the 123456789 number.
Is it possible to get a google contact by phone number?
thanks