@vgroup/dialbox 0.2.51 → 0.2.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -588,11 +588,12 @@ class ExtensionService {
|
|
|
588
588
|
}
|
|
589
589
|
getConferenceCallToken(payload) {
|
|
590
590
|
const params = {
|
|
591
|
-
|
|
592
|
-
|
|
591
|
+
'Content-Type': 'application/json',
|
|
592
|
+
'Auth-Key': payload.authId,
|
|
593
|
+
'c2c-request': window.location.hostname
|
|
593
594
|
};
|
|
594
595
|
const httpOptions = { headers: new HttpHeaders(params) };
|
|
595
|
-
return this.http.post(environment.apiUrl + '/utilities/ext/ur/generate/conference/token',
|
|
596
|
+
return this.http.post(environment.apiUrl + '/utilities/ext/ur/generate/conference/token', payload, httpOptions);
|
|
596
597
|
}
|
|
597
598
|
// getConferenceCallToken(payload: any) {
|
|
598
599
|
// console.log(payload, 'payload');
|