Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. {
  2. return new[]
  3. {
  4. // client credentials flow client
  5. new client
  6. {
  7. ClientId = "client",
  8. ClientName = "Client Credentials Client",
  9.  
  10. AllowedGrantTypes = GrantTypes.ClientCredentials,
  11. ClientSecrets = { new Secret("511536EF-F270-4058-80CA-1C89C192F69A".Sha256()) },
  12.  
  13. AllowedScopes = { "LicenseAPI" }
  14. },
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement