Skip to content

Commit

Permalink
Update documentation to clarify LoginHint.Issuer field usage in CIBA …
Browse files Browse the repository at this point in the history
…context (#773)
  • Loading branch information
kailash-b authored Jan 28, 2025
2 parents e6c84e4 + 06ffbbb commit 3fe8993
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,9 @@ We appreciate feedback and contribution to this repo! Before you get started, pl

- [Auth0's general contribution guidelines](https://github.com/auth0/open-source-template/blob/master/GENERAL-CONTRIBUTING.md)
- [Auth0's code of conduct guidelines](https://github.com/auth0/open-source-template/blob/master/CODE-OF-CONDUCT.md)
- Ensure your commits are signed to enhance security, authorship, trust and compliance.
[About commit signature verification](https://docs.github.com/en/authentication/managing-commit-signature-verification/about-commit-signature-verification)


### Raise an issue

Expand Down
4 changes: 4 additions & 0 deletions src/Auth0.AuthenticationApi/Models/Ciba/LoginHint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ public class LoginHint
[JsonProperty("format")]
public string Format { get; set; }

/// <summary>
/// Issuer of the ID Token.
/// This value should match the 'Issuer' value configured in the well-known configuration.
/// </summary>
[JsonProperty("iss")]
public string Issuer { get; set; }

Expand Down

0 comments on commit 3fe8993

Please sign in to comment.