用于部分 API 调用的 URL 查询字符串中的 @、[ 和 ]
我正在寻找来自 Google Picasa API 的部分请求。他们将其显示为示例:
GET https://picasaweb.google.com/data/feed/api/user/photosapi?kind=album&v=2.0&fields=entry(title,gphoto:numphotos,media:group(media:thumbnail),link[@rel='http://schemas.google.com/g/2005#feed'](@href))
我知道在使用之前必须对其进行 URL 编码,但是服务器如何解释 @、[ 和 ] 等符号?
由于此 API 调用将请求 XML 文件,这些字符是否可以帮助浏览器导航 XML 以获取请求的信息(因为这是相册信息的部分请求,而不是用户照片数据的完整转储)?
I'm looking doing partial requests from the Google Picasa API. They show this as an exmaple:
GET https://picasaweb.google.com/data/feed/api/user/photosapi?kind=album&v=2.0&fields=entry(title,gphoto:numphotos,media:group(media:thumbnail),link[@rel='http://schemas.google.com/g/2005#feed'](@href))
I understand this has to be URL encoded before it's used, but how does the server interpret symbols like @, [, and ]?
Since this API call will be requesting an XML file, do these characters help the browser navigate the XML to get the requested information (since this is partial request of the album information, not a full dump of the user's photo data)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了答案。这是 Google 部分响应 API 调用的语法。
更多信息请参见:http://code.google.com/labs/faq.html#experimental
I found the answer. This is the syntax for Google's Partial Response API calls.
More info here: http://code.google.com/labs/faq.html#experimental