Dylan Pierce
Dylan Pierce

Reputation: 4668

iOS not respecting URL parameters in SMS messages

My app sends unique URLs to users, there's a URL parameter that unique identifies that particular user.

For example:

Hi. Here's your password reset token:

https://myapp.com/password/reset/1111-2222-3333-4444

In iOS, when opening the link in the SMS message the browser opens up https://myapp.com/ without the rest of the URL.

Is there some special encoding iOS requires for URLs in SMS messages to open properly?

Upvotes: 1

Views: 389

Answers (1)

Dylan Pierce
Dylan Pierce

Reputation: 4668

Turns out it was a domain redirecting issue where a # was inserted in the URL and client's couldn't follow it properly.

Upvotes: 1

Related Questions