I found this tutorials for authenticate and get token from identity server by username and password:
https://identityserver.github.io/Documentation/docs/overview/simplestOAuth.html
everywhere is written that url is then like:
&grant_type=password&username=aa&password=aa
my question is if I need like in example also EmbeddedAuthorizationServer
or I can call directly SSO server?
I would like to post username and password to SSO server and return back token. Is it possible?
IdentityServer3 supports the so called resource owner password credential flow.
https://www.rfc-editor.org/rfc/rfc6749#section-4.3
https://identityserver.github.io/Documentation/docsv2/endpoints/token.html
So the answer is yes.
EDIT: Fixed dead IdServer-Link as the documentation moved to docsv2