BluesZhang / gdata-objectivec-client

Automatically exported from code.google.com/p/gdata-objectivec-client
Other
0 stars 0 forks source link

Unable to connect to schemas.google.com #13

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. include the GData framework
2. I used kGDataLinkWorksheetsFeed to connect which is defined in
GDataEntrySpreadsheet.h line 39.  It is defined as
http://schemas.google.com/spreadsheets/2006#worksheetsfeed
3. Returned 404 could not find domain.

What is the expected output? What do you see instead?
Anything other than 404 either through browser or doing a dig
schemas.google.com

What version of the product are you using? On what operating system?
Version 1.5 of Objective-C Client Library on Mac OSX10.5.5

Please provide any additional information below.
I asked an outside individual to view this domain, and he also returned a
404/domain could not be found.

Original issue reported on code.google.com by mark.mwa...@gmail.com on 9 Dec 2008 at 11:01

GoogleCodeExporter commented 9 years ago
kGDataLinkWorksheetsFeed is not a URL.  Call -worksheetsLink on a spreadsheet 
entry
from a doc list feed to get a GDataLink; the GDataLink contains the URL for the
worksheets feed.

Original comment by gregrobbins on 9 Dec 2008 at 11:12

GoogleCodeExporter commented 9 years ago
I am sorry, but I was using the following code:

GDataServiceTicket *ticket = [dataSourceService 
fetchSpreadsheetFeedWithURL:[NSURL
URLWithString:kGDataLinkWorksheetsFeed]
                                                                        delegate:self 
                                                               didFinishSelector:@selector(ticket:finishedWithQuery:)
                                                                 didFailSelector:@selector(ticket:failedWithError:)];

As you can see, kGDataLinkWorksheetsFeed, is being used which is defined.  And 
it is
a URI.

I am doing this as trying to find the list of spreadsheets.

Original comment by mark.mwa...@gmail.com on 9 Dec 2008 at 11:44

GoogleCodeExporter commented 9 years ago
Please use the discussion group for assistance in using the library, not the 
issue
tracker.

URIs are not URLs, just abstract strings.

The SpreadsheetSample application shows how to retrieve a list of spreadsheets 
and
worksheets.

Original comment by gregrobbins on 9 Dec 2008 at 11:49