Skip to content

Commit

Permalink
Release MAUI quickstart for GA (#10356)
Browse files Browse the repository at this point in the history
* Release MAUI quickstart for GA

* Update 01-login.md

* Update interactive.md
  • Loading branch information
frederikprijck authored Jan 8, 2024
1 parent 4d207f8 commit f6115f5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
8 changes: 4 additions & 4 deletions articles/quickstart/native/maui/01-login.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ When following along with this quickstart, configure `myapp://callback` as the *

Auth0 provides a [MAUI](https://www.nuget.org/packages/Auth0.OidcClient.MAUI/) SDK to simplify the process of implementing Auth0 authentication in MAUI applications.

Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package (ensure to show pre-releases).
Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package.

Alternatively, you can use the Nuget Package Manager Console (`Install-Package`) or the `dotnet` CLI (`dotnet add`).

```ps
Install-Package Auth0.OidcClient.MAUI -IncludePrerelease
Install-Package Auth0.OidcClient.MAUI
```
```
dotnet add package Auth0.OidcClient.MAUI --prerelease
dotnet add package Auth0.OidcClient.MAUI
```

## Platform specific configuration
Expand Down Expand Up @@ -154,4 +154,4 @@ if (loginResult.IsError == false)
var email = user.FindFirst(c => c.Type == "email")?.Value;
var picture = user.FindFirst(c => c.Type == "picture")?.Value;
}
```
```
1 change: 0 additions & 1 deletion articles/quickstart/native/maui/index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ language:
framework:
- maui
hybrid: false
beta: true
topics:
- quickstart
contentType: tutorial
Expand Down
8 changes: 4 additions & 4 deletions articles/quickstart/native/maui/interactive.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ The MAUI SDK supports Android, iOS, macOS, and Windows. Continue reading for pla

Auth0 provides a [MAUI](https://www.nuget.org/packages/Auth0.OidcClient.MAUI/) SDK to simplify the process of implementing Auth0 authentication in MAUI applications.

Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package (ensure to show pre-releases).
Use the NuGet Package Manager (Tools -> Library Package Manager -> Package Manager Console) to install the `Auth0.OidcClient.MAUI` package.

Alternatively, you can use the Nuget Package Manager Console (`Install-Package`) or the `dotnet` CLI (`dotnet add`).

```ps
Install-Package Auth0.OidcClient.MAUI -IncludePrerelease
Install-Package Auth0.OidcClient.MAUI
```
```
dotnet add package Auth0.OidcClient.MAUI --prerelease
dotnet add package Auth0.OidcClient.MAUI
```

## Platform specific configuration
Expand Down Expand Up @@ -200,4 +200,4 @@ Still having issues? Check out our [documentation](https://auth0.com/docs) or vi

Now that your users can log in and log out, you will likely want to be able to retrieve the [profile information](https://auth0.com/docs/users/concepts/overview-user-profile) associated with authenticated users. For example, you may want to be able to display a logged-in user’s name or profile picture in your project.

The Auth0 SDK for MAUI provides user information through the `LoginResult.User` property.
The Auth0 SDK for MAUI provides user information through the `LoginResult.User` property.

0 comments on commit f6115f5

Please sign in to comment.