XtGem Forum catalog
HomeBlogAbout Me

Apple App Store Web



iTunes Search API

  1. App Store Log In
  2. Apple App Store Website
  3. App Store Login
  4. Apple Store Download For Pc

Table of Contents

Mac App Distribution Certificate and Mac Installer Distribution Certificate (Mac App Store) If your Apple Developer Program membership is valid, your existing apps on the Mac App Store will not be affected. However, you will no longer be able to upload new apps or updates signed with the expired or revoked certificate to the Mac App Store.

Genuine purchase receipts—from purchases in the App Store, iTunes Store, iBooks Store, or Apple Music—include your current billing address, which scammers are unlikely to have. You can also review your App Store, iTunes Store, iBooks Store, or Apple Music purchase history. App Store purchases are safe and simple, so you can start playing, gaming, reading — or just doing — right away. Create a secure account with your preferred payment method on file and it’s easily accessible across your devices and the web. App Store purchases are safe and simple, so you can start playing, gaming, reading — or just doing — right away. Create a secure account with your preferred payment method on file and it’s easily accessible across your devices and the web.

Overview

The Search API allows you to place search fields in your website to search for content within the iTunes Store and Apple Books Store. You can search for a variety of content; including books, movies, podcasts, music, music videos, audiobooks, and TV shows. You can also call an ID-based lookup request to create mappings between your content library and the digital catalog. Developers may use promotional content in the API, including previews of songs, music videos, album art and App icons only to promote store content and not for entertainment purposes. Use of sound samples and other assets from the API must be proximate to a store badge. Terms and conditions apply.

The Partners Program allows you to earn a commission on qualifying revenue generated by clicks initiated from your website or app into the iTunes Store and Apple Books Store. For more information on the Partners Program, see http://www.apple.com/itunes/affiliates.

Searching

To search for content from a field in your website and display the results in your website, you must create a search field that passes a fully-qualified URL content request to the iTunes Store, parse the JavaScript Object Notation (JSON) format returned from the search, and display the results in your website.

Usb recording and sound editing software. The fully-qualified URL must have the following format:

https://itunes.apple.com/search?parameterkeyvalue

Where parameterkeyvalue can be one or more parameter key and value pairs indicating the details of your query.

To construct a parameter key and value pair, you must concatenate each parameter key with an equal sign (=) and a value string. For example: key1=value1. To create a string of parameter key and value pairs, you must concatenate each pair using an ampersand (&). For example:

key1=value1&key2=value2&key3=value3

Note: When creating search fields and scripts for your website, you should use dynamic script tags for your xmlhttp script call requests. For example:

<script src='https://../search?parameterkeyvalue&callback='{name of JavaScript function in webpage}'/>

The following table defines the parameter keys and values you can specify to search for content within the iTunes Store or Apple Books Store:

Parameter KeyDescriptionRequiredValues
termThe URL-encoded text string you want to search for. For example: jack+johnson.YAny URL-encoded text string. Note: URL encoding replaces spaces with the plus (+) character and all characters except the following are encoded: letters, numbers, periods (.), dashes (-), underscores (_), and asterisks (*).
countryThe two-letter country code for the store you want to search. The search uses the default store front for the specified country. For example: US. The default is US.YSee http://en.wikipedia.org/wiki/ ISO_3166-1_alpha-2 for a list of ISO Country Codes.
mediaThe media type you want to search for. For example: movie. The default is all.Nmovie, podcast, music, musicVideo, audiobook, shortFilm, tvShow, software, ebook, all
entityThe type of results you want returned, relative to the specified media type. For example: movieArtist for a movie media type search. The default is the track entity associated with the specified media type.NThe following entities are available for each media type:
moviemovieArtist, movie
podcastpodcastAuthor, podcast
musicmusicArtist, musicTrack, album, musicVideo, mix, song
Please note that “musicTrack” can include both songs and music videos in the results
musicVideomusicArtist, musicVideo
audiobookaudiobookAuthor, audiobook
shortFilmshortFilmArtist, shortFilm
tvShowtvEpisode, tvSeason
softwaresoftware, iPadSoftware, macSoftware
ebookebook
allmovie, album, allArtist, podcast, musicVideo, mix, audiobook, tvSeason, allTrack
attributeThe attribute you want to search for in the stores, relative to the specified media type. For example, if you want to search for an artist by name specify entity=allArtist&attribute=allArtistTerm. In this example, if you search for term=maroon, iTunes returns “Maroon 5” in the search results, instead of all artists who have ever recorded a song with the word “maroon” in the title.

The default is all attributes associated with the specified media type.

NThe following attributes are available for each media type:
movieactorTerm, genreIndex, artistTerm, shortFilmTerm, producerTerm, ratingTerm, directorTerm, releaseYearTerm, featureFilmTerm, movieArtistTerm, movieTerm, ratingIndex, descriptionTerm
podcasttitleTerm, languageTerm, authorTerm, genreIndex, artistTerm, ratingIndex, keywordsTerm, descriptionTerm
musicmixTerm, genreIndex, artistTerm, composerTerm, albumTerm, ratingIndex, songTerm
musicVideogenreIndex, artistTerm, albumTerm, ratingIndex, songTerm
audiobooktitleTerm, authorTerm, genreIndex, ratingIndex
shortFilmgenreIndex, artistTerm, shortFilmTerm, ratingIndex, descriptionTerm
softwaresoftwareDeveloper
tvShowgenreIndex, tvEpisodeTerm, showTerm, tvSeasonTerm, ratingIndex, descriptionTerm
allactorTerm, languageTerm, allArtistTerm, tvEpisodeTerm, shortFilmTerm, directorTerm, releaseYearTerm, titleTerm, featureFilmTerm, ratingIndex, keywordsTerm, descriptionTerm, authorTerm, genreIndex, mixTerm, allTrackTerm, artistTerm, composerTerm, tvSeasonTerm, producerTerm, ratingTerm, songTerm, movieArtistTerm, showTerm, movieTerm, albumTerm
callbackThe name of the Javascript callback function you want to use when returning search results to your website. For example: wsSearchCB.Y, for cross-site searcheswsSearchCB
limitThe number of search results you want the iTunes Store to return. For example: 25.The default is 50.N1 to 200
langThe language, English or Japanese, you want to use when returning search results. Specify the language using the five-letter codename. For example: en_us.The default is en_us (English).Nen_us, ja_jp
versionThe search result key version you want to receive back from your search.The default is 2.N1, 2
explicitA flag indicating whether or not you want to include explicit content in your search results.The default is Yes.NYes, No
Notes
  • It is critical to encode your URLs correctly in order to be commissioned for partner links. Notes on partners encoding raw links can be found in the Advanced Partner Linking document.
  • To improve response times, minimize the number of search results the Search API returns by specifying an appropriate value for the limit parameter key.
  • The Search API is limited to approximately 20 calls per minute (subject to change). If you require heavier usage, we suggest you consider using our Enterprise Partner Feed (EPF). If you wish to access content on our EPF, please review our documentation page for more information.
  • Large websites should set up caching logic for the search and lookup requests sent to the Search API. For an illustration, see Caching Architecture later in this document.
Search Examples

The following are examples of fully-qualified URLs for specific search requests:

  • To search for all Jack Johnson audio and video content (movies, podcasts, music, music videos, audiobooks, short films, and tv shows), your URL would look like the following:
    https://itunes.apple.com/search?term=jack+johnson
  • To search for all Jack Johnson audio and video content and return only the first 25 items, your URL would look like the following:
    https://itunes.apple.com/search?term=jack+johnson&limit=25
  • To search for only Jack Johnson music videos, your URL would look like the following:
    https://itunes.apple.com/search?term=jack+johnson&entity=musicVideo
  • To search for all Jim Jones audio and video content and return only the results from the Canada iTunes Store, your URL would look like the following:
    https://itunes.apple.com/search?term=jim+jones&country=ca
Lookup Examples

You can also create a lookup request to search for content in the stores based on iTunes IDs, UPCs/ EANs, and All Music Guide (AMG) IDs. ID-based lookups are faster and contain fewer false-positive results.

The following are examples of fully-qualified URLs for specific lookup requests:

  • Look up Jack Johnson by iTunes artist ID:
    https://itunes.apple.com/lookup?id=909253
  • Look up Jack Johnson by AMG artist ID:
    https://itunes.apple.com/lookup?amgArtistId=468749
  • Look up multiple artists by their AMG artist IDs:
    https://itunes.apple.com/lookup?amgArtistId=468749,5723
  • Look up all albums for Jack Johnson:
    https://itunes.apple.com/lookup?id=909253&entity=album
  • Look up multiple artists by their AMG artist IDs and get each artist’s top 5 albums:
    https://itunes.apple.com/lookup?amgArtistId=468749,5723&entity=album&limit=5
  • Look up multiple artists by their AMG artist IDs and get each artist’s 5 most recent songs:
    https://itunes.apple.com/lookup?amgArtistId=468749,5723&entity=song&limit=5&sort=recent
  • Look up an album or video by its UPC:
    https://itunes.apple.com/lookup?upc=720642462928
  • Look up an album by its UPC, including the tracks on that album:
    https://itunes.apple.com/lookup?upc=720642462928&entity=song
  • Look up an album by its AMG Album ID:
    https://itunes.apple.com/lookup?amgAlbumId=15175,15176,15177,15178,15183,15184,15187,1519,15191,15195,15197,15198
  • Look up a Movie by AMG Video ID:
    https://itunes.apple.com/lookup?amgVideoId=17120
  • Look up a book by its 13 digit ISBN:
    https://itunes.apple.com/lookup?isbn=9780316069359

Understanding Search Results

The Search API returns your search results in JavaScript Object Notation (JSON) format. JSON is built on two structures:

  • A collection of name/value pairs, also known as an object; this concept is similar to a Java Map object, a Javascript Dictionary, or a Pearl/Ruby hash. An object is an unordered set of name/value pairs, beginning with a left brace ( { ) and ending with a right brace ( } ). Each name is surrounded by double-quotes and followed by a colon ( : ); the name/value pairs are separated by commas ( , ).
  • An ordered list of values, also known as an array. An array is an ordered collection of values, beginning with a left bracket ( [ ) and ending with a right bracket ( ] ). Values are separated by commas ( , ).

All JSON results are encoded as UTF-8. For more information on JSON, please see http://www.json.org.

The following example displays the JSON results for a song in the iTunes Store:

The following table defines the JSON result keys and values:

Result KeyDescriptionReturnedReturn Values and Examples
wrapperTypeThe name of the object returned by the search request.Ytrack, collection, artistFor example: track.
*explicitnessThe Recording Industry Association of America (RIAA) parental advisory for the content returned by the search request.For more information, see
http://itunes.apple.com/WebObjects/MZStore.woa/wa/parentalAdvisory.
Yexplicit (explicit lyrics, possibly explicit album cover), cleaned (explicit lyrics “bleeped out”), notExplicit (no explicit lyrics)For example: “trackExplicitness”:”notExplicit”.
kindThe kind of content returned by the search request.Ybook, album, coached-audio, feature-movie, interactive- booklet, music-video, pdf podcast, podcast-episode, software-package, song, tv- episode, artistFor example: song.
trackNameThe name of the track, song, video, TV episode, and so on returned by the search request.YFor example: “Banana Pancakes”.
artistNameThe name of the artist returned by the search request.YFor example: Jack Johnson.
collectionNameThe name of the album, TV season, audiobook, and so on returned by the search request.YFor example: “In Between Dreams”.
*censoredNameThe name of the album, TV season, audiobook, and so on returned by the search request, with objectionable words *’d out.Note: Artist names are never censored.YFor example: “S**t Happens”.
artworkUrl100, artworkUrl60A URL for the artwork associated with the returned media type, sized to 100×100 pixels or 60×60 pixels.Only returned when artwork is availableFor example: “http:// a1.itunes.apple.com/jp/r10/Music/ y2005/m06/d03/h05/ s05.oazjtxkw.100×100-75.jpg”.
*viewURLA URL for the content associated with the returned media type. You can click the URL to view the content in the iTunes Store.YFor example: “http:// itunes.apple.com/WebObjects/ MZStore.woa/wa/viewAlbum? i=68615807&id=68615813&s=1434 62”.
previewUrlA URL referencing the 30-second preview file for the content associated with the returned media type. .Only returned when media type is trackFor example: “http:// a392.itunes.apple.com/jp/r10/ Music/y2005/m06/d03/h05/s05.zdzqlufu.p.m4p”.
trackTimeMillisThe returned track’s time in milliseconds.Only returned when media type is track

Legal

Developers may use certain promotional content as may be provided by Apple, including previews of songs and music videos, and album art, for the purposes of promoting the subject of the Promo Content; provided such Promo Content: (i) is placed only on pages that promote the content on which the Promo Content is based; (ii) is proximate to a “Download on iTunes” or “Download on App Store” badge (as approved by Apple) that acts as a link directly to pages within iTunes where consumers can purchase the promoted content; (iii) includes attribution indicating the Promo Content was “provided courtesy of iTunes” if such Promo Content includes song or music video previews; (iv) is streamed only, and not downloaded, saved, cached, or synchronized with video, if such Promo Content includes song or music video previews; (v) is not used for independent entertainment value apart from its promotional purpose; and (vi) is not used to promote any other goods or services. Developer acknowledges that Apple provides the Promo Content “as is,” and disclaims any and all representations or warranties, including, but not limited to, non-infringement. Developer shall forward any claims received in connection with the Promo Content to Apple immediately upon receipt, and will remove any Promo Content immediately upon request from Apple.

This agreement and your use of Promo Content are governed by California law.

Recent activities by Apple provide signals businesses should consider using Progressive Web Applications instead of native apps for iOS 13.

These actions include purging existing apps from the store and blocking access to other, corporate applications. At the same time they have begun adding support for service workers and the web manifest specification to iOS Safari.

Apple has been aggressively dumping apps from the iOS App Store because they use app generation or template based services. Apple cites section 4.2.6 of their App Store review guidelines. as an excuse to remove these apps.

'4.2.6 Apps created from a commercialized template or app generation service will be rejected.'

The crackdown started at the 2017 Apple Developer Conference. That is when they announced the section 4.2.6 changes to their review guidelines.

Since the conference Apple used the 4.2.6 rule as cause to cleanse the App Store They have removed a large amount of apps considered to be clones, copies, fraudulent, abandoned or not 64-bit compatible. This action is not considered something that would affect legitimate business trying to engage customers. It is merely an act of cleaning house of bad clutter.

But here is the problem.

Apple used very generic terms. They have left the definition of what an app generation service is open ended.

This is intentional so Apple can use this clause and several others in their review guidelines to reject any app they simply do not want.

You're probably wondering:

'Is Apple about to dump apps built with frameworks like Ionic, React Native or Cordova?'

The answer is probably yes!

A more recent post by the Apple developer team emphasizes that all code in an iOS app must be self contained and not use external application code.

Apps that provide core features and functionality dynamically with web technology like HTML5 are best delivered to everyone in Safari, rather than through the curated App Store.

If you read their submission guidelines they are clearly within their rights to dump your Cordova app. All they have to do is cite the 'repackaged web site' clause.

'Your app should include features, content, and UI that elevate it beyond a repackaged website.'

Just my opinion, but probably 90% or more of the apps in the iOS App Store could be affected by this clause. Not because they are hybrid apps or created with React Native, but because they are not app-like.

If you read further in their latest updates they are not saying being a hybrid app will get you tossed or excluded, yet, but they are certainly tightening the allowed range.

Are You 'App-Like'?

The Apple app guidelines go on to require your app to be 'app-like'.

'If your app is not particularly useful, unique, or “app-like,” it doesn’t belong on the App Store.'

What does that mean?

I struggled to find a formal definition of app-like. But let me speculate.

I mean the Apple guidelines are vague, so why not just make up a definition?

In the eyes of Apple a web site just provides information, maybe a few input forms, not much else. An app has application like features. Again ambiguous.

One of the many apps now being rejected is one from Neo Gourmet. They were rejected twice and Apple suggested it would was more appropriate to be a web app instead.

And as I read the description of the Neo Gourmet app it should be a web app, a progressive web app. It allowed online ordering and delivery tracking for customers. It also utilized messaging to place orders via voice communication. All these features the web supports.

It also has a 'private' app for the delivery drivers. Again something the web can do well.

I mean we use administrative and line of business web apps every day.

Maybe Safari is not the best platform for these features, but they can all be done through Safari.

Applications tend to be tools, something used to accomplish one or more tasks. Software like spreadsheets and word processes are obvious examples. As Microsoft and Google have shown, these office productivity tools can do quite well on the web.

Reading through the guidelines Apple is looking for applications that are not what they consider replication of a web site and also offer some form of unique value. Again a subjective attribute.

To borrow from their language about what is offensive, you know an app when you see it.

But it gets worse:

Apple continues with vague definitions as reasons to reject applications:

'If your App doesn't provide some sort of lasting entertainment value, or is just plain creepy, it may not be accepted.'

How does Apple determine what is entertaining. I mean I find a lot of things very entertaining shows and movies my wife thinks are stupid, like the History Channel's Ancient Aliens series. To be fair she has shows I don't find entertaining, so we are even.

The point here is what I and my target audience find entertaining, the Apple censors may not. In fact these guidelines are just vague enough they could dump any app they don't like. Or maybe they think it might compete with their own apps, just a thought.

Apple Blocks Enterprise Apps

Recently Apple revoked certificates for both Google and Facebook that caused their internal, enterprise applications to stop working. In both cases Google and Facebook had explicitly broken the rules for Apple's enterprise and developer program, so they deserved to be revoke.

For clarity, the terms of the program prohibit the distributions of iOS applications outside the store to general consumers. Both companies had done this with special marketing apps they were using with a select set of 'customers'.

I don't fault Apple in this scenario, they did nothing wrong. But it demonstrates how outsourcing control of your business applications to a third party like Apple can be unreliable.

One of the many reasons why I trust the web over native apps.

Google Is Also Rejecting Apps

Google has been busy rejecting and removing apps from the play store too. Their reasons are slightly different. They are fighting malware, which is a good thing.

'The number of rejected app submissions increased by more than 55 percent, and we increased app suspensions by more than 66 percent.'

This is good because it means you have less competition for the few eyes available for your app.

This is not exactly what Apple has been doing and should not affect legitimate businesses.

Should You Even Have An App?

Before your blood pressure rises think.

Does your online presence need to be an app?

How to Progressive Web Applications compare to native apps?

The web can handle many advanced user experience expectations. Spreadsheets, word processors and other productivity tools are available as web applications, like Office 365 and Google Docs.

The general market segment this affects are small businesses that have fallen victim to the 'we must have a mobile app' mania.

Developing a native app is expensive and small businesses and individuals cannot afford the financial investment. Compound this expense by three, iPhone, iPad and Android and the barrier to entry is high.

Native application development and maintenance costs vary wildly, based on your quality expectations and requirements. And yes the same can be said about the web.

Estimates I have seen range from a few thousand to millions of dollars. Most of your development and overheads are consumed by your back-end or server-side infrastructure. The mobile apps are just a portion.

But it does not stop there. More fees are just around the corner.

You must also pay the stores to be included.

Apple charges $99 a year, Google charges a one time $25 fee. But the stores also take 30% of your pre-tax app revenue.

This makes app generation services that charge a few hundred dollars a year to have a simple, informational app with a form or two very attractive small businesses. The niches often cited are restaurants, fitness gyms, Realtors, churches and other more locally focus businesses.

More and more businesses are expressing public outrage at Apple's App Store policies, specifically the 30% in app purchase requirement. BaseCamp, Spotify, Match Group and FortNite are just a handful of the prominent brands. Thousands of smaller companies are also upset and looking for alternatives.

A recent TechCrunch article agrees these restrictions affect small businesses the most:

'What's unfortunate about the expanded policy enforcement is that these app makers specifically target the small business market. They build apps for businesses that don't have the internal resources to build their own apps or can't afford to hire a custom shop to design a new iOS app from scratch.'

This action has attracted the attention of a California congressman, Ted Lieu, who has sent a request to Apple to reconsider their decision.

Companies that generate these applications are also starting to shut down. Shoutem has already closed down due to the Apple policy changes.

Others, like AppMachine, have announced they are halting their services while they figure out a new strategy.

'Even through all these changes, we started seeing rejections of apps that we consider to be perfectly in line with the Apple guidelines, especially apps that are being built in specific categories such as Restaurant/Cafe, Sport and Brochure apps, amongst others.'

Developing an application is just the start. You must meet a minimum 'standard' to be considered entry to the App Store Think about the review guidelines like a bouncer outside the hot night club. If you are not on the list or not 'hot enough' you can't get past the velvet rope.

Your app could be rejected just because the app store reviewer feels like there are already enough apps in your category. You may have the best app, but no one would ever have a chance to know. Portable ssd for macbook pro.

Once in the store life may not be as exciting as they imagined. Attracting customers is very difficult. In fact 8 out of 10 apps never make any money.

This is primarily due to app fatigue. Basically everyone is tired of downloading apps. In fact no one does anymore.

According to ComScore the average mobile user downloads zero apps in a given month. In fact its about 48% that download an app.

I perform anecdotal surveys of my 'normal' (non-techie) friends. They almost always tell me they have not downloaded an app in a while. Many cannot recall the last time they downloaded an app.

App Store Log In

Most app download activity is restricted to their kids downloading free games to play.

Even if you can get someone to download your app, less than 10% of those will use your app more than once. Typically after three months, collecting dust on their device's home screen, most apps are deleted.

App Discovery Issues

Since the introduction of the App Store, discovery has been a major issue. Apple never did a respectable job building search capabilities in the platform. This makes finding applications that are not already popular difficult.

This has lead to increased advertising costs to coax users to download mobile apps. Estimates tell us you need to spend between $2.50-$15 for a single app download. When you consider 10% will use your app after it is downloaded, that means a true customer acquisition costs rages from $25-$150.

Compare that to the pennies or sometimes fraction of pennies it costs me to drive traffic to web content. Plus the free traffic I earn through organic search listings. And that is the key phrase, organic search listings. There is not true app store SEO.

App Stores have not developed formal search engine capabilities. Often apps returned are already 'popular' Meaning they have many downloads, reviews and ratings. While these signals are good indicators of app popularity, it does not mean they are good. It also makes launching a new application tough.

And yes, earning organic search engine placement for a new web page or site is not easy. It can be done and for much less effort.

This paints a very bleak story for businesses seeking a coveted spot on customer phones.

Interface

But what if there is a better way?

Outsourcing Control of Your Brand to a Store

App discovery is one thing, but what about your app just being removed?

This happens from time to time with App Stores. For example, a recent iOS update caused many installed applications to be inaccessible.

The nice thing about the web is, unless your server goes down or the user is offline anyone can access your application. If they have visited and you have a service worker with caching logic they can still use your PWA even without the network or server.

PWAs allow you to remove third parties from controlling your application discoverability and distribution.

Progressive Web Apps Provide Businesses Affordable Mobile Presence

The web is a rich platform, providing capabilities on par with native apps. yet they retain their ability to be found and share deep content links. This means you can add a new page to your site and drive targeted traffic directly to that content.

The web is a fantastic application platform. It always has been. But today it is better than it ever was.

Today, the web has added many great new features you may not know about. For example native push notifications.

Push, offline caching and other new features are enabled by service workers, which run in the background and offer a new extension to provide 'disconnected' capabilities.

Progressive web applications (PWA) are a newer class of web site. They are fast, reliable, secure and engaging. Behind the scenes they are served using HTTPS, have a valid web manifest file and a registered service worker. These are the core technical requirements.

But the real definition of a progressive web app is a web site that leverages the best platform features to deliver the best user experience. Ultimately this experience is on par with native apps.

Part of that experience is the ability of your site to earn a place on the customer's home screen. When launched from the home screen these web sites run just like a native applications. No browser chrome necessary.

But here is the real value PWAs offer:

The ability to cheaply engage customers without the friction and censorship inherent with native apps. You can publish anything you want, anytime and the public is free to determine if you are worthy of their trust, not an arbitrary person at Apple, Google or Microsoft.

The next great thing about progressive web apps is they are much more affordable to develop. If you already have a web site you can be a progressive web application easier than you think. You wont need to create anything new, just add some capabilities. In fact you could upgrade in as little 15 minutes.

But here's the thing.

I see Apple doing businesses a favor by rejecting apps that should be progressive web apps. I think this is a business move on their part.

It is expensive for them to host and manage these applications. Even though they charge an annual fee it is not a high enough margin to make the service attractive enough for Apple.

Apple App Store Website

Plus I think they are finally admitting what I have been saying for years, the majority of mobile apps are just web sites or should be a web site.

Today Apple is finally doing the right thing.

They are eliminating the presence of web apps from the App Store. I think they also see where progressive web apps are going. They will replace just about all native apps in the near future.

Apple Safari's recent activity of shipping service worker and web manifest support in iOS 11.3 and Safari 13 is another positive signal that Apple is embracing Progressive Web Apps.

Microsoft is encouraging businesses to submit their progressive web app to the Microsoft store. Doing so gives your application full access to the Windows platform APIs.

Android now instantly makes PWAs webapks when added to the home screen. A webapk is a native Android app without going through the store or being compiled to an executable. It is similar to a hybrid app made by Cordova.

Now you can take it one step further and submit your PWA to the Android Play Store, giving you yet another distribution channel.

The only difference with the Microsoft strategy and webapks is they don't have access to the platform APIs.. Yet.

They are executed like a native Android application.

But Apple Does Not Support Progressive Web Apps..Or Does It?

Recent changes on iOS and Safari made PWAs a natural fit on Apple's mobile platforms. In early 2018 Apple shipped support for basic service workers and caching. Service workers combined with the traditional mobile web app capabilities made iOS a fine progressive web app platform.

There are a few limitations, like limited cache capacity. 50MB is not a lot, but enough for most sites to at least cache placeholder images and necessary HTML, CSS and JavaScript to drive a reasonable offline experience.

If you need more storage you can build an intelligent caching system to leverage IndexedDB, which can give you 500MB or more of additional storage, which is available to service workers.

There are some drawbacks. You cannot do native push notifications. You can do web notifications and use SMS notifications. In fact I have read some studies that show SMS has 3 times the engagement rates push messages have, so maybe they should be the primary notification channel.

Even though Apple does not fully support the web manifest they have always supported web app features and an add to home screen story. In fact this was the original way Apple recommended apps be created for iPhones. That plumbing still works to this day. In fact I have been using it to create an add to home screen experience for over 7 years now.

PWAs on iOS Work Great and in Browsers Without Service Workers

Progressive web applications are about delivering great user experiences that progressively utilize platform features as they are supported. If you follow web development best practices your web experience delivers impressive KPI values.

Many businesses that have already shipped progressive web application solutions are reporting impressive returns on iOS. These include higher sales, more customers and higher customer engagement stats.

AliExpress reported an 82% increase in iOS conversions. The Washington Post increased user engagements nearly 5x.

I don't want to portray PWAs as a panacea on iOS, they are not perfect. And that is really Apple's fault.

Up to this point they have delivered a rather crippled PWA experience. This includes minimal cache capacity, purging 'unused apps' and not really supporting a strong add to homescreen story.

Apple Has PWA Support

App Store Login

In August 2018 Apple started work on service worker support. Production support followed that December. They also started work on web manifest support, which we can see initial usage when a PWA is added to the homescreen. Now, instead of bookmarking the current page you should see a homescreen PWA launch from the manifest start_url.

The two key missing PWA features in Safari were service workers and manifest. We still don't have 100% coverage for both, per se. Push notifications are not yet supported and we don't 100% know if the web manifest file is being used yet.

Apple also chose to limit service worker cache capacity to 50MB and not the sliding scale other browsers have adopted. This does not mean service worker cache is not usable, instead you have a vast storage channel in IndexedDB.

Apple Store Download For Pc

While we don't know they will ship support, we know they will. We also don't know what their add to home screen experience will look like or if they will include push notifications in the first release. But I will take what I can get.

If you architect your site correctly it will just naturally take advantages of these features when they are available. You won't have to change your code.

Summary

If you have a web site you have all you need to be the app you think you want. If you have not already upgraded to HTTPS go ahead and do so. Add a web manifest file to your site. Then create and register a service worker. The service worker does not even need to do anything at first, just create one and see where things go.

Are you a business that wants to upgrade to a progressive web app, been considering an app in the App Store or maybe you are in jeopardy of being rejected or removed, contact us for a free consultation. We would be more than happy to help you start your journey as a progressive web application.

Before you go down the road to the App Store, stop and ask yourself if you can be a progressive web app today without the getting hassled by Apple.

We use cookies to give you the best experience possible. By continuing, we'll assume you're cool with our cookie policy.

Install Love2Dev for quick, easy access from your homescreen or start menu.





Apple App Store Web
Back to posts
This post has no comments - be the first one!

UNDER MAINTENANCE