sp-dev-fx-webparts/samples/react-kiota-custom-api-client
Hugo Bernier 7e97daab76 Added more contributions 2023-03-15 01:23:34 -04:00
..
TeamifiedApi Kiota custom API client SPFx sample added 2022-11-01 20:49:16 +01:00
assets Fixed sample.json client-side-dev 2023-01-02 18:34:10 -05:00
teamified-client Changed authors to contributors 2023-02-18 22:58:44 -05:00
README.md Added more contributions 2023-03-15 01:23:34 -04:00

README.md

Using Kiota to generate a client to your AzureAd API and use it from a SPFx webpart

Summary

This sample shows how you can generate a client for your custom API using Kiota, and how to use that client in an SPFx webpart. The sample contains a custom API that is secured by Azure AD and interacts with Microsoft Graph API to do some basic operations with the Teams endpoint (it allows to list all the Teams in the tenant, to get detailed info for a given Team, and to Provision a new Team with some preconfigured channels).

kiota-spfx-sample

About Kiota

Kiota is a tool created by Microsoft, that allows you to generate a client/SDK for any given API that is described using OpenAPI. It supports different languages, and provides some abstractions, so you can customise several things, like Auth providers, JSON serialisation, HTTP Request adapter, etc.

In this sample, in the folder /teamified-client/src/webparts/client is included the code generated by Kiota. We executed the following command:

kiota generate --openapi "my-api-swagger.yaml" --language typescript --namespace-name TeamifiedApiClient --class-name TeamifiedApiClient --output generated --log-level debug

Used SharePoint Framework Version

version

Applies to

Get your own free development tenant by subscribing to Microsoft 365 developer program

Prerequisites

The API must be registered in your Azure Active Directory tenant. You can find more information on how to do it in these articles:

The API uses a ClientSecret to connect to MS Graph API, so create a Secret from Azure portal (this is not the recommended approach, but works for the demo. For production, I recommend you to use a certificate). The API needs the following permissions to Microsoft Graph API:

Scope Type
Group.ReadWrite.All Delegated
Directory.Read.All Delegated

Also, the API needs to be configured in the Expose an API section, and configure a new scope named: Teams.Manage.

Once the API is registered in Azure AD, we must configure permissions for SPFx to access the API. This can be done in different ways. I suggest you to use the M365 CLI, with the following command:

m365 spo serviceprincipal grant add --resource 'Teamified_Services' --scope 'Teams.Manage'

Contributors

Version history

Version Date Comments
1.0 November 1, 2022 Initial release

Minimal Path to Awesome

  • Clone this repository
  • Edit the file TeamifiedApi/appsettings.json with your Azure Active Directory API registration data (ClientId, TenantId, etc)
  • Edit the file teamified-client/src/webparts/teamsList/components/TeamsList.tsx and set the proper values in the following code:
  // #region ******************** UPDATE WITH YOUR TENANT DATA ********************
  private readonly azureAdApplicationIdUri: string = "api://{AZURE_AD_CLIENT_ID}";
  private readonly apiHost: string = "{YOUR_API}.azurewebsites.net";
  // #endregion
  • Ensure the API is up and running (you can run your API in localhost, using Visual Studio or the dotnet CLI, no need to publish it to Azure or any other hosting)
  • Ensure that you are at the solution folder
  • in the command-line run:
    • npm install
    • gulp serve

Features

This extension illustrates the following concepts:

  • using Kiota tool to generate a client for any API described by OpenAPI standard.
  • using Kiota SPFx Authentication library, to provide Authentication to the Kiota client
  • protecting a dotnet webapi using Azure AD and Microsoft.Identity.Web library
  • calling MS Graph API from a dotnet webapi

References

Help

We do not support samples, but this community is always willing to help, and we want to improve these samples. We use GitHub to track issues, which makes it easy for community members to volunteer their time and help resolve issues.

If you're having issues building the solution, please run spfx doctor from within the solution folder to diagnose incompatibility issues with your environment.

You can try looking at issues related to this sample to see if anybody else is having the same issues.

You can also try looking at discussions related to this sample and see what the community is saying.

If you encounter any issues using this sample, create a new issue.

For questions regarding this sample, create a new question.

Finally, if you have an idea for improvement, make a suggestion.

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.