Files
powerpoint-toolbox/node_modules/@azure/msal-common/src/utils/ClientAssertionUtils.ts
T
2025-03-07 19:22:02 +01:00

26 lines
652 B
TypeScript

/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
import {
ClientAssertionCallback,
ClientAssertionConfig,
} from "../account/ClientCredentials.js";
export async function getClientAssertion(
clientAssertion: string | ClientAssertionCallback,
clientId: string,
tokenEndpoint?: string
): Promise<string> {
if (typeof clientAssertion === "string") {
return clientAssertion;
} else {
const config: ClientAssertionConfig = {
clientId: clientId,
tokenEndpoint: tokenEndpoint,
};
return clientAssertion(config);
}
}