forked from ringcentral/ringcentral-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (56 loc) · 2.98 KB
/
index.html
File metadata and controls
73 lines (56 loc) · 2.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>JavaScript SDK — RingCentral™ Platform</title>
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<link rel="stylesheet" href="https://netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="demo/common.css">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
</head>
<body>
<div class="container">
<h1>
<a href="http://developers.ringcentral.com" target="_blank" id="logo"></a>
</h1>
<hr>
<div class="well text-center">
<h1>JavaScript SDK Demo Applications</h1>
<br>
<p>
<a class="btn btn-primary" href="demo/angular" role="button">AngularJS</a>
<a class="btn btn-primary" href="demo/presence-graph.html" role="button">Presence Graph</a>
<a class="btn btn-primary" href="demo/core.html" role="button">Core</a>
<a class="btn btn-primary" href="demo/requirejs.html" role="button">RequireJS</a>
<a class="btn btn-primary" href="demo/sso/index.html" role="button">SSO</a>
</p>
</div>
<h4>RingCentral provides SDKs (Software Development Kits) for you to download and use directly in your own
development project.</h4>
<div class="row">
<div class="col-xs-6">
<p>The SDKs package RingCentral APIs into easy-to-use libraries for each programming language. Often, you
can handle all interaction with the RingCentral API using methods provided in the SDKs without ever
needing to learn more about the lower level details of the API communication itself.</p>
<p>Any communication between an external program and RingCentral is performed through one of our APIs. The
APIs are agnostic to development platform and language, allowing you much more flexibility.</p>
</div>
<div class="col-xs-6">
<p>RingCentral provides documentation for each API we offer. The documentation has details on each API call,
including required fields and response details. For a complete list of the RingCentral APIs, visit
<a href="https://developer.ringcentral.com/api-docs" target="_blank">https://developer.ringcentral.com/api-docs</a>.
</p>
<p><strong>Best Practice Tip:</strong>
Use the RingCentral JavaScript SDKs when you want to build applications intended to run on web browsers
and interact with RingCentral.</p>
</div>
</div>
<hr>
<p class="text-center text-muted">
© 1999 – <span id="date"></span> RingCentral™, Inc. All rights reserved.
<script> document.getElementById('date').innerHTML = (new Date()).getFullYear().toString(); </script>
</p>
</div>
</body>
</html>