AuthInfo

scalaoauth2.provider.AuthInfo
case class AuthInfo[+U](user: U, clientId: Option[String], scope: Option[String], redirectUri: Option[String], codeChallenge: Option[String], codeChallengeMethod: Option[CodeChallengeMethod])

Authorized information

Value parameters

clientId

Using client id which is registered on system.

codeChallenge

This value is used by Authorization Code Grant for PKCE support.

codeChallengeMethod

This value is used by Authorization Code Grant for PKCE support.

redirectUri

This value is used by Authorization Code Grant.

scope

Inform the client of the scope of the access token issued.

user

Authorized user which is registered on system.

Attributes

Source
DataHandler.scala
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product