Instagram story link not working

Three separate problems get reported with the same sentence. The fix depends entirely on which one you have, so start by working that out.

6 August 2026 by PAD team

Which failure is yours

Before changing anything, put your case in one of these rows. They have nothing to do with each other.

What happensWhat it is
The sticker never appears when you try to add itaccount restriction or app version
Viewers tap and nothing loads, white screenthe in-app browser cannot reach the store
Viewers land on the store instead of your appuniversal link not verified

The middle row is the one almost nobody diagnoses correctly, so most of this covers it.

The white screen

Instagram opens links in a WebView it controls rather than in Safari. That browser handles ordinary pages fine. It cannot do one thing, and that one thing is exactly what a store link needs.

Any request to apps.apple.com on iOS is answered by Apple with a redirect into a custom scheme:

→ 302 Found
  Location: itms-appss://apps.apple.com/app/id123456789

Safari reads that as an instruction to close the page and open the App Store. A WebView has no handler registered for the scheme and no permission to pass it to another app, so navigation stops. No error fires, because from the browser's point of view nothing failed.

Measured on 6,200 taps routed between 3 and 6 August 2026, Instagram was the single largest source of taps, and virtually all of them came from iOS. On Android the same story link works, because Android WebViews can hand a Play Store URL to the Play app through an intent:// URL.

Why you cannot reproduce it

Testing by pasting the URL into Safari always succeeds, which sends people looking for problems in the wrong places for days. The only test that reproduces the failure is tapping the link from inside the app.

Post the story to a close friends list containing only you, then tap the sticker from your own feed. That takes a minute and settles it.

The fix

The tap has to leave the in-app browser before Apple's redirect fires. Instagram ships an undocumented scheme that does precisely that:

instagram://extbrowser/?url=https%3A%2F%2Fapps.apple.com%2Fapp%2Fid123456789

Fire it on page load rather than on a button press. The visitor already tapped once, which is all the permission you need. If the hand-off has not happened within about a second, try the store scheme directly, and after roughly a second and a half show a visible button asking them to open the page in their browser.

Campaign attribution survives the hand-off. Apple reads the ct parameter on a store URL, Google Play reads referrer, and both travel with the redirect.

If the sticker itself will not appear

That is a different matter entirely. Link stickers are available to all accounts now, so the usual causes are an outdated app version, a temporary restriction on the account after a reported post, or a URL Instagram refuses outright. Raw apps.apple.com links are sometimes rejected in ads for the same reason, which is why so many setups route through a landing page in the first place.

Our links handle the escape automatically and report which taps got through, so you can see the failure rate instead of guessing at it.

Create a link

Related