We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8026f74 commit b8d2b0cCopy full SHA for b8d2b0c
packages/sdk/src/server/index.ts
@@ -251,6 +251,12 @@ export class BackendClient extends BaseClient {
251
}
252
253
254
+ /**
255
+ * Returns the raw access token string or a promise resolving to it.
256
+ * This can be used when you need the token directly without Authorization header formatting.
257
+ *
258
+ * @returns A string or promise resolving to the access token.
259
+ */
260
public rawAccessToken(): string | Promise<string> {
261
if (this.staticAccessToken) {
262
return this.staticAccessToken;
0 commit comments