Using the template at https://github.com/NetCoreTemplates/mvcidentityserver and trying to require Authorization to access the ServiceStack "Hello" object.
I'm able to retrieve a token and call
https://localhost:5001/servicestack-identity
and
https://localhost:5001/webapi-identity
from PostMan successfully.
However, if I add an Authenticate attribute
namespace MyApp.ServiceInterface
{
public class MyServices : Service
{
[Authenticate]
public object Any(Hello request)
{
return new HelloResponse { Result = $"Hello, {request.Name}!" };
}
to the Any method in MyServices, I'm not able to call /Hello with the token.
/requiresauth gives the same result