1
0
Fork 0

payload updated

pull/887/head
Sourav Chanduka 2021-08-16 14:29:58 +05:30
parent c7ec4073b7
commit 1c86c4c890
1 changed files with 4 additions and 4 deletions

View File

@ -44,12 +44,12 @@ export class OidcClient {
}
private static async postCall(httpclient: actions_http_client.HttpClient, id_token_url: string, audience: string): Promise<string> {
const data : TokenRequest = { aud : !!audience ? '{aud: audience}' : undefined }
debug(`audience is ${audience !== null ? audience : 'null'}`)
const data :TokenRequest = { aud: !!audience ? audience : ''}
const res = await httpclient.postJson<TokenResponse>(id_token_url,data.aud).catch((error) => {
debug(`audience is ${!!audience ? audience : 'not defined'}`)
const res = await httpclient.postJson<TokenResponse>(id_token_url,data).catch((error) => {
throw new Error(
`Failed to get ID Token. \n
Error Code : ${error.statusCode}\n