将第二个参数添加到 Web 服务 URL
我在我的 Android 应用程序之一中使用以下 moviefone Web 服务:
http://gateway.moviefone.com/
用户输入他的邮政编码,然后使用以下 XML 数据来获取他附近的电影院和电影。
http://www.moviefone.com/search/19087?format=xml
我的问题是,如何添加更改放映时间日期的参数?该 XML 仅包含当前日期的电影信息。 Web 服务网关页面显示:“params: zip/id= count= date=YYYYMMDD”
我尝试将“date=20120208”添加到 URL 末尾,但没有成功。
I'm using the following moviefone web service in one of my Android applications:
The user enters his zip code, and the following XML data is used to get his nearby movie theaters and movies.
http://www.moviefone.com/search/19087?format=xml
My question is, how do you add the parameter for changing the date of the showtimes? That XML only contains movie information for the current date. The web service gateway page says: "params: zip/id= count= date=YYYYMMDD"
I tried adding "date=20120208" to the end of the URL but it didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
&
分隔多个参数:Use a
&
to separate multiple parameters:使用
&
分隔参数Separate parameters with an
&