Call to Logout not redirecting

Using the instructions on this page: https://developer.mypurecloud.com/api/rest/authorization/ we are trying to log the user out of purecloud then redirect them to our application page. The logout is successful but the re-direct never occurs, the page just stays on the Purecloud login page. This is an example of what the url looks like that we are using.
https://login.mypurecloud.com/logout?client_id=xxxxx-xxxxx-xxxxx&redirect_uri=https://google.com

Is the redirect URI that you're sending configured in your OAuth client exactly as you're sending it? redirect_uri=https://google.com is different than redirect_uri=https://google.com/ (trailing slash).

That was it, Thank you Tim.