IMPORTANT!
This forum is now archived. Click here for the New Support Forum
How does the logging in work? (a link will suffice)
Quote from tony09uk on November 17, 2018, 12:10 amI bought the pro version of quick app and I'm stepping through the code, but i've come to a sticking point at the login stage. How does it work?
I can see the client calls "/connect/token" but in the server code the only reference to that is in the `services.AddSwaggerGen` method.
After browsing this article https://www.scottbrady91.com/Identity-Server/ASPNET-Core-Swagger-UI-Authorization-using-IdentityServer4 I believe that authentication is happening through the following URL https://quickapp-pro.azurewebsites.net/connect/token
If my belief is correct, why? (why wasn't a configured identity server included in the package?). If I am wrong what is happening?
I bought the pro version of quick app and I'm stepping through the code, but i've come to a sticking point at the login stage. How does it work?
I can see the client calls "/connect/token" but in the server code the only reference to that is in the `services.AddSwaggerGen` method.
After browsing this article https://www.scottbrady91.com/Identity-Server/ASPNET-Core-Swagger-UI-Authorization-using-IdentityServer4 I believe that authentication is happening through the following URL https://quickapp-pro.azurewebsites.net/connect/token
If my belief is correct, why? (why wasn't a configured identity server included in the package?). If I am wrong what is happening?
Quote from Eben Monney on August 31, 2019, 12:24 pmHi,
This is a late response. Sorry for that.
The Token endpoint is part of the openid specification and IdentityServer implements this by default as a standard.
See http://docs.identityserver.io/en/latest/endpoints/token.htmlA configured IdentityServer is included in the package. See the "kitchen-sink" folder in your download package for the implementation.
Regards,
Eben Monney
Hi,
This is a late response. Sorry for that.
The Token endpoint is part of the openid specification and IdentityServer implements this by default as a standard.
See http://docs.identityserver.io/en/latest/endpoints/token.html
A configured IdentityServer is included in the package. See the "kitchen-sink" folder in your download package for the implementation.
Regards,
Eben Monney
IMPORTANT!
This forum is now archived. Click here for the New Support Forum