Skip to content

Latest commit

 

History

History
101 lines (68 loc) · 4 KB

typescript-azure.md

File metadata and controls

101 lines (68 loc) · 4 KB
title description author ms.author ms.topic date
Build API clients for TypeScript with Microsoft identity authentication
Learn how use Kiota to build API clients in TypeScript to access APIs that require Microsoft identity authentication.
jasonjoh
jasonjoh
tutorial
03/20/2023

Build API clients for TypeScript with Microsoft identity authentication

Required tools

Create a project

Run the following commands in the directory where you want to create a new project.

npm init
npm install -D typescript ts-node
npx tsc --init

Add dependencies

Before you can compile and run the generated API client, you need to make sure the generated source files are part of a project with the required dependencies. Your project must have a reference to the abstraction package. Additionally, you must either use the Kiota default implementations or provide your own custom implementations of the following packages.

For this tutorial, use the default implementations.

Run the following commands to get the required dependencies.

npm install @microsoft/kiota-abstractions
npm install @microsoft/kiota-authentication-azure
npm install @microsoft/kiota-http-fetchlibrary
npm install @microsoft/kiota-serialization-form
npm install @microsoft/kiota-serialization-json
npm install @microsoft/kiota-serialization-text
npm install @microsoft/kiota-serialization-multipart
npm install @azure/identity

Generate the API client

Kiota generates API clients from OpenAPI documents. Create a file named get-me.yml and add the following.

:::code language="yaml" source="~/code-snippets/get-started/azure-auth/get-me.yml":::

You can then use the Kiota command line tool to generate the API client classes.

kiota generate -l typescript -d get-me.yml -c GetUserApiClient -o ./client

Register an application

[!INCLUDE register-azure-app-device-code-intro]

[!INCLUDE register-azure-app-device-code-portal]

[!INCLUDE register-azure-app-device-code-powershell]


Create the client application

Create a file in the root of the project named index.ts and add the following code. Replace YOUR_CLIENT_ID with the client ID from your app registration.

:::code language="typescript" source="~/code-snippets/get-started/azure-auth/typescript/index.ts" id="ProgramSnippet":::

Note

This example uses the DeviceCodeCredential class. You can use any of the credential classes from the @azure/identity library.

Run the application

To start the application, run the following command in your project directory.

npx ts-node index.ts

See also