将第二个参数添加到 Web 服务 URL

发布于 2025-01-03 19:25:10 字数 494 浏览 2 评论 0原文

我在我的 Android 应用程序之一中使用以下 moviefone Web 服务:

http://gateway.movi​​efone.com/

用户输入他的邮政编码,然后使用以下 XML 数据来获取他附近的电影院和电影。

http://www.movi​​efone.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:

http://gateway.moviefone.com/

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

錯遇了你 2025-01-10 19:25:10

使用 & 分隔多个参数:

http://www.moviefone.com/search/19087?format=xml&date=20120208

Use a & to separate multiple parameters:

http://www.moviefone.com/search/19087?format=xml&date=20120208
动听の歌 2025-01-10 19:25:10

使用 & 分隔参数

Separate parameters with an &

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文