I tried with two things . .....
One which works --
```
new ApiResource("mvc", "Storyboard Mvc App"){
UserClaims= { "name" , "email"},
ApiSecrets = { new Secret("secret".Sha256())},
},
But when I Do this --
```
new ApiResource
{
Name="mvc",
DisplayName="Storyboard Mvc App",
UserClaims = {"name","email"},
ApiSecrets = { new Secret("secret".Sha256())},
},
It doesnt work at all. All it gives is invalid scope . WHY !! :(
And here is my OpenId configuration for Mvc app --

The ctor is a convenience for setting name and scope in one go. If you don't use it you need to create the scope yourself.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
The ctor is a convenience for setting name and scope in one go. If you don't use it you need to create the scope yourself.