auth0/idtoken-verifier

Accept string[] as audience in IdTokenVerifier constructor

ea244wmi opened this issue ยท 1 comments

Hi! ๐Ÿ‘‹

Firstly, thanks for your work on this project! ๐Ÿ™‚

Today I used patch-package to patch idtoken-verifier@2.2.2 for the project I'm working on.

I've noticed IdTokenVerifier constructor accepts string for audience while it probably should accept string or array of strings.

https://github.com/auth0/idtoken-verifier/blob/master/src/index.js#L184-L191

Here is the diff that solved my problem:

diff --git a/node_modules/idtoken-verifier/types/index.d.ts b/node_modules/idtoken-verifier/types/index.d.ts
index 71c1d5e..627cae8 100644
--- a/node_modules/idtoken-verifier/types/index.d.ts
+++ b/node_modules/idtoken-verifier/types/index.d.ts
@@ -33,7 +33,7 @@ export type validateAccessTokenCallback = (err?: Error) => any;
  */
 declare function IdTokenVerifier(parameters: {
   issuer: string;
-  audience: string;
+  audience: string | string[];
   jwksCache?: any;
   jwksURI?: string;
   expectedAlg?: string;
@@ -59,7 +59,7 @@ declare class IdTokenVerifier {
    */
   constructor(parameters: {
     issuer: string;
-    audience: string;
+    audience: string | string[];
     jwksCache?: any;
     jwksURI?: string;
     expectedAlg?: string;

This issue body was partially generated by patch-package.

๐Ÿ‘‹๐Ÿป Could you describe the specific use case where you are validating an ID token using multiple audiences?

For context, the way it's designed at the minute is to specifically validate that the aud claim contains the specific client_id registered at the issuer.

https://openid.net/specs/openid-connect-core-1_0.html#IDTokenValidation