W3cubDocs

/Web APIs

RTCSessionDescription: toJSON() method

The RTCSessionDescription.toJSON() method generates a JSON description of the object. Both properties, type and sdp, are contained in the generated JSON.

Syntax

js

toJSON()

Parameters

None.

Return value

A JSON object containing the following properties:

type

One of the following: "offer", "answer", "pranswer" or null.

sdp

Either null or the SDP message string corresponding to RTCSessionDescription.sdp property.

Example

js

// sd is a RTCSessionDescriptor

alert(JSON.stringify(sd)); // This call the toJSON() method behind the scene.

Specifications

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 43 15 24 No 30 11 43 43 24 30 11 4.0

See also

© 2005–2023 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