You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Developers enter ICE server details as an array of JavaScript objects (example code block below). An RTCPeerConnection is instantiated and an SDP is generated.
59
-
60
-
```javascript
61
-
[
62
-
{
63
-
urls:'turn:111.222.333.444:54321',
64
-
username:'myAwesomeUsername',
65
-
credential:'mySecretPassword', // or token
66
-
credentialType:'password'
67
-
},
68
-
{
69
-
urls:'stun:555.777.888.999:43210',
70
-
},
71
-
]
72
-
```
73
57
58
+
Developers enter ICE server details as an array of JavaScript objects (example code block below). An RTCPeerConnection is instantiated and an SDP is generated.
59
+
60
+
```javascript
61
+
[
62
+
{
63
+
urls:'turn:111.222.333.444:54321',
64
+
username:'myAwesomeUsername',
65
+
credential:'mySecretPassword', // or token
66
+
credentialType:'password',
67
+
},
68
+
{
69
+
urls:'stun:555.777.888.999:43210',
70
+
},
71
+
];
72
+
```
74
73
75
74
## Additional Features
76
75
@@ -92,16 +91,18 @@ Swell is a one-stop shop for sending and monitoring your API requests
**Clone this repo and check out dev mode for the latest and greatest!**
96
96
97
-
- _Webhooks_: Swell includes user-defined HTTP callback connection testing designed to test other server's connection to the web and ability to send data. The test insures that when an event occurs, the source site makes an HTTP request to the URL configured for the webhook.
97
+
-_Webhooks_: Swell includes user-defined HTTP callback connection testing designed to test other server's connection to the web and ability to send data. The test insures that when an event occurs, the source site makes an HTTP request to the URL configured for the webhook.
- *New in Dev Version 1.10.2!* _Github Integration + Import/Export Workspaces_: Swell allows you to import and export workspaces, making it easy to share collections with your team. You can even register with Github to save your workspaces directly into your repository!
103
+
-_New in Dev Version 1.10.2!__Github Integration + Import/Export Workspaces_: Swell allows you to import and export workspaces, making it easy to share collections with your team. You can even register with Github to save your workspaces directly into your repository!
0 commit comments