I'm trying to display Market Quotes on my website using Google Finance
API. I'm using the following code
Google.GData.Client.Service finser = new Service("finance", "company-
software-1.2");
FeedQuery query = new FeedQuery();
query.Uri = new Uri("http://finance.google.com/finance");
query.Query = "INTC";
query.NumberToRetrieve = 10;
AtomFeed feed = finser.Query(query);
When executing line - AtomFeed feed = finser.Query(query); - I get a
Parsing error,
'--' is an unexpected token. The expected token is '>'. Line 81,
position 5.
Can anyone help to resolve this error. I'm using 1.2.2.0.
Thanks,
Daas
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---