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:

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
# dom-rtcsessiondescription-tojson

Browser compatibility

BCD tables only load in the browser

See also