RTCSessionDescription.toJSON()
Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The RTCSessionDescription.toJSON() method generates a JSON description of the object. Both properties, type and sdp, are contained in the generated JSON.
Syntax
var jsonValue = sd.toJSON();
The result value is a JSON object containing the following values:
-
"type", containing the value of theRTCSessionDescription.typeproperty and can be one of the following values:"offer","answer","pranswer"ornull. -
"sdp", containing aDOMString, ornull, with the SDP message corresponding toRTCSessionDescription.sdpproperty.
Example
// sd is a RTCSessionDescriptor alert(JSON.stringify(sd)); // This call the toJSON() method behind the scene.
Specifications
| Specification |
|---|
| WebRTC 1.0: Real-Time Communication Between Browsers (WebRTC 1.0) # dom-rtcsessiondescription-tojson |
Browser compatibility
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
toJSON |
Yes |
15 |
Yes |
No |
Yes |
11 |
Yes |
Yes |
Yes |
Yes |
11 |
Yes |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/RTCSessionDescription/toJSON