Zoom meeting sdk integrarion angular

Hi @tommy
I am using zoom meeting sdk version 2+ in angular. I am using sdk credentials for integration. But it is giving invalid signature error. New version is not allowing to use app credentials. Please suggest solution

@vallurumadhavi7,

Thank you for posting in the Zoom Developer Forum. Sorry to hear you are encountering an invalid signature error. Is this happening when using our Angular sample App? If so, what version are you using?

If so, have you double-checked whether the signature is correct? If not, you can find the steps to decode your signature in the guide below.

Alternatively, you can test/ compare your signature generation implementation against our sample app.

version is v2.7.0
This is the code I am using
getSignature() {
ZoomMtg.generateSDKSignature({
sdkKey: this.sdkKey,
sdkSecret: this.sdkSecret,
meetingNumber: this.meetingNumber,
role: ‘’,
success : (res) => {
console.log(res);
this.startMeeting(res.result);
},
error : (err) => {
console.log(err);
}
});
}

startMeeting(sign) {

this.client.join({
sdkKey : this.sdkKey,
signature: sign,
meetingNumber: this.meetingNumber,
password: this.passWord,
userName: this.userName,
userEmail: this.userEmail
});

}