Reputation: 139
I have a website that generates an email when a user registers. The email has a link (a http get) to an API that confirms the user's email address. The API returns a "true" value. Note, the API is an Azure website.
The get link in the email is of the form:
https://xxx.azurewebsites.net/api/AddressVerification/%7Bid%[email protected]
This link works in Edge and Safari browsers and the user profile is correctly updated. HOWEVER, in Chrome it triggers a phishing warning. It should be noted that non-get calls to the website from Chrome do not get the phishing warning.
Is there a way to prevent the phishing warning in Chrome when executing a get?
In Chrome, I tried the link:
https://website_URL/api/AddressVerification/%7Bid%[email protected]
I expect a return of "true" but got a phishing warning.
Upvotes: 0
Views: 91