是否可以以编程方式创建 Apple iTunes 商店中项目的 URL?
是否可以以编程方式创建直接指向 Apple iTunes 商店上的项目的 URL?
我注意到 last.fm 和类似网站的链接可以将用户直接带到 iTunes 商店的一部分,例如作为专辑页面。
该链接的 URL 由 last.fm 创建。 下面是此类 URL 的示例: http://www.last.fm/affiliate_redirect。 php?restype=9&id=3168755&supplier=24
我认为他们在这个链接后面有一些代码,但他们肯定没有手动添加所有项目?
Is it possible to create URLs direct to items on the Apple iTunes store programmatically?
I have noticed that last.fm and similar sites have links which take the user directly to a part of the iTunes store, such as an album page.
The URL for the link is created by last.fm. Here's an example of such an URL:
http://www.last.fm/affiliate_redirect.php?restype=9&id=3168755&supplier=24
I presume they have some code behind this link, but surely they did not add all of the items manually?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
有两个方面。 首先,您可以通过以编程方式搜索 App Store< /a>:
接下来,您可以使用 LinkShare API:
链接文字
There are two aspects. First, you can get deep links by programatically searching the App Store:
Next, you can convert those links to affiliate links using the LinkShare API:
link text
此页面指出:
所以这听起来像是一个“不”。 当然,总是有一种蛮力方法,即从艺术家姓名列表或任何您想要创建链接的内容中抓取搜索引擎的输出。
This page states:
So that sounds like a "no". Of course there's always the brute force approach of screen-scraping the output of a search engine fed from a list of artist names, or from whatever you want to create a link to ...
需要记住的一点是,苹果在 URL 结构中使用应用程序 ID,如果您希望能够在应用程序上线之前编写指向应用程序的链接,您可以通过进入 itunes connect 找到您的应用程序来自行创建 URL ID,然后创建一个 URL,如下所示。
A Good thing to remember is that apple use app ID's in the URL structure, if you want to be able to code a link to your app before your app is live you can create the url yourself by going in to itunes connect, finding your app ID and then creating a URL as bellow.
我们以编程方式通过 URL 搜索歌曲,这是可从 itunes API 获取的链接的代码
Programatically we search songs by URLs, this is code for that link available from itunes API