私は数日間この状態になっていて、混乱しています。Googleの連絡先androidのapi
私は、JavaクライアントのGoogleが「アンドロイドで仕事をしていない」と多くの場所で読んだことがあります。
誰かが正しい方向に向いていますか?
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
ContactsService service = new ContactsService("my_app_name");
URL feedUrl = null;
try {
feedUrl = new URL("https://www.google.com/m8/feeds/contacts/default/full");
} catch (MalformedURLException e) {
e.printStackTrace();
}
try {
service.setUserCredentials("[email protected]", "thePassword");
ContactFeed resultFeed = new ContactFeed();
resultFeed = service
.getFeed(feedUrl, ContactFeed.class);
} catch (IOException e) {
e.printStackTrace();
} catch (ServiceException e) {
e.printStackTrace();
}
}
と私は得る:
W/XmlParser(793): javax.xml.parsers.ParserConfigurationException: org.xml.sax.SAXNotRecognizedException: http://xml.org/sax/features/external-parameter-entities
あなたは何を試しましたか? – Selvin
@norbertこれにはどんな解決策がありましたか?あなたのコードやリンクを教えていただけますか? – Noundla
GData apiでこの問題を解決しました。この投稿(http://noundla.blogspot.in/2014/01/fetch-googlegmail-contacts-using-google.html) – Noundla