When I redirect to
from an Angular app, I get the error
confidential clients can not request tokens directly
When I try the same request from Postman (eg outside the browser), it works.
Why? https://github.com/reddit-archive/reddit/wiki/oauth2 explicitly mentions the Implicit Authentication Flow; eg with response_type=token instead of code. The only reason the Implicit Authentication Flow exists is for SPAs like Angular, because the code grant flow does not make sense for them (as the token is revealed anyway). So why does Reddit offer the Implicit Authentication Flow but does not let me use it?
You must create your application as an installed app to use the implicit grant.
As per the documentation.