SIP.js
SIP.js copied to clipboard
Add extraHeaders to unsubscribe
Adding the ability to add extraHeaders
for the unsubscribe
method.
Example:
var subscriptionUnsubscribeOptions: SubscriptionUnsubscribeOptions = {
extraHeaders: [
`X-Test: test`
]
};
subscriber.unsubscribe(subscriptionUnsubscribeOptions);