Announcements

Help Wizard

Step 1

NEXT STEP

FAQs

Please see below the most popular frequently asked questions.

Loading article...

Loading faqs...

VIEW ALL

Ongoing Issues

Please see below the current ongoing issues which are under investigation.

Loading issue...

Loading ongoing issues...

VIEW ALL

Url Schemes search (App link) not working

Url Schemes search (App link) not working

Hello everyone,

 

Brief description of the issue:

We found an issue with Spotify when we want to open the app with url schemes in search mode, Spotify app crash.

 

Steps to reproduce the issue:

  1. The step can be reproduced without code, just open safari and write:  "spotify://search:muse"
  2. Click on enter
  3. The spotify app open and crash instantly

What steps you’ve tried already:

We try to find if the url schemes as changed, but it doens't seem to change, and the app doesn't crash if you don't specify the ":muse" parameter.

iPhone 6S and iPhone 7, iOS 10.2

 

 

The app version of Spotify you’re using:

6.8.0.3786

 

Reply
1 Reply

The quick fix I made was to remove the urlscheme that was added to the original uri.
so you'll be calling the uri directly. 

which is 'spotify:artist:4gzpq5DPGxSnKTe4SA8HAU' or 'spotify:track:1dNIEtp7AY3oDAKCGg2XkH'

UIApplication.shared.openURL("spotify:artist:4gzpq5DPGxSnKTe4SA8HAU")
or
UIApplication.shared.openURL("spotify:track:1dNIEtp7AY3oDAKCGg2XkH")

Suggested posts