Javascript Browser
Overview
The @turnkey/sdk-browser
package exposes functionality that lets developers build browser based applications that interact with the Turnkey API with different types of authentication.
It consists of different clients that enable requests to the API to be authenticated via different auth methods like user sessions, passkey and iFrames. It also contains methods to manage information and state related to authentication like auth bundles and sessions, retrieving user information and server signing API requests.
Use the sdk-browser package when you’re building browser-based applications that interact with the Turnkey API.If you are working with React – check out our @turnkey/sdk-react
package.
Installation
- NPM
- Yarn
npm install @turnkey/sdk-browser
yarn add @turnkey/sdk-browser
Initializing
import { Turnkey } from "@turnkey/sdk-browser";
const turnkey = new Turnkey({
apiBaseUrl: "https://api.turnkey.com",
defaultOrganizationId: process.env.TURNKEY_ORGANIZATION_ID,
});
Parameters
An object containing configuration settings for the Browser Client.
defaultOrganizationId
string
required
The root organization that requests will be made from unless otherwise specified
apiBaseUrl
string
required
The base URL that API requests will be sent to (use https://api.turnkey.com when making requests to Turnkey's API)
rpId
string
The Relying Party ID used for WebAuthn flows (will default to the value returned from window.location.hostname
unless otherwise specified)
serverSignUrl
string
The URL to send requests that need to be signed from a backend codebase by the root organization's API key if using the serverSign
flow.
Clients and Methods
Calls to Turnkey's API must be signed with a valid credential from the user initiating the API call. Turnkey's Browser SDK contains the following different clients that manage the process of validating these requests depending on the kind of authentication credential that is being used.
TurnkeyBrowserClient
The TurnkeyBrowserClient
wraps Turnkey's basic SDK client with browser session management functionality. This client allows you to create a read only session that only authenticates read requests, or a read write session. It uses local storage for session management.
For further information on using the TurnkeyBrowserClient
:
Below are all of the methods exposed by TurnkeyBrowserClient
login()
Creates a read-only session for the current user, storing session details like userId, organizationId, and sessionExpiry in local storage. This session allows for read-only actions within the Turnkey API.
import { TurnkeyBrowserClient } from "@turnkey/sdk-browser";
const config = {
apiBaseUrl: "https://your-api-base-url.com",
defaultOrganizationId: "your-organization-id",
serverSignUrl: "https://your-server-sign-url.com",
};
// Create a client instance
const client = new TurnkeyBrowserClient(config);
// Logs in to create a read-only session, storing the session in local storage
const readOnlySession = await browserClient.login({ organizationId: "org-id" });
loginWithReadWriteSession()
Creates a read-write session for the current user, storing an auth bundle in local storage. This session allows both read and write operations, and the API key is added to the Turnkey User with a defined expiration.
import { TurnkeyBrowserClient } from "@turnkey/sdk-browser";
const config = {
apiBaseUrl: "https://your-api-base-url.com",
defaultOrganizationId: "your-organization-id",
serverSignUrl: "https://your-server-sign-url.com",
};
// Logs in to create a read-write session, using a target embedded key and session expiration
const readWriteSession = await browserClient.loginWithReadWriteSession( "target-embedded-key",
"900", // Session expires in 15 minutes
"user-id" );
TurnkeyPasskeyClient
The TurnkeyPasskeyClient
class extends TurnkeyBrowserClient
and specializes it for user authentication through passkeys, which leverage the WebAuthn standard for passwordless authentication. This class enables the implementation of strong, user-friendly authentication experiences in a web-based application without relying on passwords. TurnkeyPasskeyClient handles passkey creation, session management with passkeys and integrates with WebAuthn and Embedded API Keys.
For further information on using the TurnkeyPasskeyClient
:
Below are the methods exposed by the TurnkeyPasskeyClient
createUserPasskey()
Creates a passkey for an end-user, handling lower-level configurations for the WebAuthn protocol, including challenges and user details.
import { TurnkeyPasskeyClient } from "@turnkey/sdk-browser";
// Create a Passkey client instance
const passkeyClient = turnkeySDK.passkeyClient();
// Creates a new user passkey with WebAuthn protocol details
const passkey = await passkeyClient.createUserPasskey({
publicKey: {
rp: { name: "Example Relying Party" },
user: { name: "testUser", displayName: "Test User" },
},
});
createPasskeySession()
Creates a read-write session using passkey authentication, with an encrypted API key. The session enables both read and write actions and persists in local storage.
import { TurnkeyPasskeyClient } from "@turnkey/sdk-browser";
// Create a Passkey client instance
const passkeyClient = turnkeySDK.passkeyClient();
// Creates a read-write session using a passkey with a specific expiration and organization ID
const session = await passkeyClient.createPasskeySession(
"user-id",
"target-embedded-key",
"1800", // Expire in 30 minutes
"org-id"
);
TurnkeyIframeClient
The TurnkeyIframeClient
class extends TurnkeyBrowserClient
and specializes it for use with an iframe-based session. It adds the ability to manage credentials and data exchanges securely through an iframe, allowing for a different form of session persistence and interaction within an embedded environment.
For further information on using the TurnkeyIframeClient
:
Here are all of the methods exposed by TurnkeyIframeClient
injectCredentialBundle()
Injects an encrypted credential bundle (API key or session token) directly into the iframe for session-based authentication and authorization.
// Injects a credential bundle into the iframe for session management
const success = await iframeClient.injectCredentialBundle("your-credential-bundle");
injectWalletExportBundle()
Injects a wallet export bundle into the iframe, associating it with a specified organization. This allows secure transfer of wallet credentials.
// Injects a credential bundle into the iframe for session management
const success = await iframeClient.injectWalletExportBundle("wallet-bundle", "org-id");
injectKeyExportBundle()
Injects a key export bundle into the iframe, supporting optional key formats. This is useful for transferring specific key credentials securely.
// Injects a key export bundle with an optional key format
const success = await iframeClient.injectKeyExportBundle("key-bundle", "org-id", "PEM");
injectImportBundle()
Injects an import bundle into the iframe, associating it with a specific organization and user, enabling secure import of user credentials.
// Injects an import bundle for a specific organization and user
const success = await iframeClient.injectImportBundle("import-bundle", "org-id", "user-id");
extractWalletEncryptedBundle()
Extracts an encrypted wallet bundle from the iframe. Useful for securely retrieving wallet credentials from the iframe to the main application.
// Extracts the encrypted wallet bundle from the iframe
const walletBundle = await iframeClient.extractWalletEncryptedBundle();
extractKeyEncryptedBundle()
Extracts an encrypted key bundle from the iframe, providing secure retrieval of key credentials.
// Extracts the encrypted key bundle from the iframe
const keyBundle = await iframeClient.extractKeyEncryptedBundle();
Top Level SDK Functionality
Here are all of the methods exposed by TurnkeyBrowserSDK
passkeyClient()
Creates an instance of TurnkeyPasskeyClient with a specified or default rpId (relying party ID). This client can prompt users to sign with a passkey credential for authentication.
const passkeyClient = turnkey.passkeyClient();
const walletsResponse = await passkeyClient.getWallets();
iframeClient()
Creates an instance of TurnkeyIframeClient by initializing an IframeStamper with the specified iframeUrl and optional element ID. The Iframe client is used to interact with a series of iframes hosted by Turnkey, designed for sensitive operations such as storing an expiring credential within the Email Recovery and Email Auth flows, and facilitating Wallet Import and Export. The code powering these iframes can be found at https://github.com/tkhq/frames.
const iframeClient = await turnkey.iframeClient({
iframeContainer: document.getElementById("<iframe container id>"),
iframeUrl: "https://auth.turnkey.com",
});
const response = await iframeClient.injectCredentialBundle(
"<Credential from Email>",
);
if (response) {
await iframeClient.getWallets();
}
// this requires the developer to build a wrapper flow that can take user text input in their app and call the injectCredentialBundle function on the turnkey iframeClient
serverSign()
The serverSign function is used to proxy requests from a root parent organization to a child organization. The API key cannot be stored client-side, which is why the serverSign flow exists: to forward authenticated client-side requests to Turnkey via proxy backend.
const subOrgIdsResponse = await turnkey.serverSign(
"getSubOrgIds",
[{
filterType: "EMAIL",
filterValue: email
}]
)!
if (subOrgIdsResponse.organizationIds?.length > 0) {
const emailAuthResponse = await turnkey.serverSign(
"emailAuth",
[{
email: email,
targetPublicKey: <iframeClient.iframePublicKey>,
organizationId: subOrgIdsResponse.organizationIds[0]
}]
)
}
currentUserSession()
Generally speaking, in order to ensure a seamless UX, you might not want a passkey user have to manually authenticate every read request from Turnkey's API with a credential (e.g. via FaceID or TouchID). In order to reduce friction, you can have a user login() to Turnkey with a credential once. This method facilitates this process and creates an instance of The TurnkeyBrowserClient that allows multiple read-only requests to Turnkey's API.
const passkeyClient = turnkey.passkeyClient();
await passkeySigner.login();
// when a user logs in with the Turnkey SDK, a read-only API credential is saved in localStorage and can be used to make API read requests on their behalf
const userSessionClient = await turnkey.currentUserSession();
const walletsResponse = await userSessionClient.getWallets();
// this API call happens without any confirmation step because the user now has an active read-only session
getReadWriteSession()
If there is a valid, current read-session, this will return an auth bundle and its expiration. This auth bundle can be used in conjunction with an iframeStamper to create a read + write session.
// gets auth bundle to be used with an iframeStamperto create a read write session
const readWriteSession = await turnkey.getReadWriteSession();
getCurrentSubOrganization()
Retrieves information about the user's current sub-organization from the user data stored in local storage. Useful for obtaining the user's organization context.
// retrieves users current sub organization
const subOrganization = await turnkey.getCurrentSubOrganization()