Hello.
This is liu,I come from China,My English is not good,recently,I make
up an VB.Net program,an Application program,I need to use Google Data
API to get some message from Gmail.
So I search some information from internet,and program according the
example:
The Source is:
Dim service As New ContactsService("Test")
service.setUserCredentials("
yli...@gmail.com", "liuy@2008")
Dim query As ContactsQuery
query = New
ContactsQuery(ContactsQuery.CreateContactsUri("default"))
Dim feed As ContactsFeed
feed = service.Query(query)
For Each entry As ContactEntry In feed.Entries
Console.WriteLine(entry.Title.Text)
For Each email As EMail In entry.Emails
Console.WriteLine("\t" + email.Address)
Next
Next
but run the application,then the exception happend:"Excution of
request failed:
http://www.google.com/m8/feeds/contacts/default/full"
So how can I do?
Thank,please tell me how to fix it,the better have sample.