It will either redirect to the site specified in the redirect_uri or an error page
The redirect_uri must match the one for that clientID
With a response_type of token, you should get redirected to (after auth):
https://[your registered redirect URI]#access_token=[an access token]
Then you can use javascript to consume the access_token
Are you sure you are using the right flow?