When using the Google Drive File API I want to find a file or folder by its name and return the link you would have as if you were using the actual Google Drive UI.
According to the API reference 'selfLink' provides 'a link back to this file' but its actually an API URL (ie - https://www.googleapis.com/drive/v2/files/). When I follow this URL I get a hash that includes the message 'Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.' This doesn't make sense to me since I authorized the request when finding the file.
When I use the 'alternateLink' I get 'A link for opening the file in using a relevant Google editor or viewer' which is inconvenient because it requires an extra click to get to the Google Drive UI.
Does the selfLink have to be converted somehow? Any help would be greatly appreciated!