public String getContactsInCurrentPlatform() {
   return httpRequestUtils.getResponse(
       getPlatformContactUrl() + "?mtexter=true", "application/json", "application/json");
 }
 public String getGoogleContacts(int page) {
   return httpRequestUtils.getResponse(
       getGoogleContactUrl() + "?page=" + page, "application/json", "application/json");
 }