Skip to content

Commit 08313ba

Browse files
committed
always set token_format: 'jwt'
1 parent 5fdc97e commit 08313ba

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/connectivity/src/scp-cf/identity-service.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ async function getIasClientCredentialsTokenImpl(
142142
const authenticationType =
143143
arg.authenticationType || 'OAuth2ClientCredentials';
144144

145-
const tokenOptions: IdTokenFetchOptions = {};
145+
const tokenOptions: IdTokenFetchOptions = {
146+
token_format: 'jwt'
147+
};
146148

147149
// Stringify resource(s)
148150
if (arg.resource) {

0 commit comments

Comments
 (0)