I use the following entry in Info.plist to make the program handle the "tidal" url scheme, but it launches the program without the URL itself.
The entry is:
Full Info.plist here:
https://github.com/strawberrymusicplayer/strawberry/blob/master/dist/macos/Info.plist.in
The URL looks like this:
tidal://login/auth
With the url parameters that contains the authorization code, the total length is 692 characters.
It works fine on Linux and Windows, but not on macOS.
I've tested both with Safari and Firefox.
Is the URL perhaps too long?
The entry is:
Code Block <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleTypeRole</key> <string>Viewer</string> <key>CFBundleURLName</key> <string>org.strawberrymusicplayer.strawberry</string> <key>CFBundleURLSchemes</key> <array> <string>tidal</string> </array> </dict> </array>
Full Info.plist here:
https://github.com/strawberrymusicplayer/strawberry/blob/master/dist/macos/Info.plist.in
The URL looks like this:
tidal://login/auth
With the url parameters that contains the authorization code, the total length is 692 characters.
It works fine on Linux and Windows, but not on macOS.
I've tested both with Safari and Firefox.
Is the URL perhaps too long?