-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (58 loc) · 2.54 KB
/
index.html
File metadata and controls
67 lines (58 loc) · 2.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="examples/resources/img/favbaas.ico">
<title>baas.io-sdk-javascript File Examples</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap-theme.min.css">
<!-- Baas.io CSS -->
<link rel="stylesheet" href="examples/resources/css/baas.io.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="#" style="padding:5px 0px 5px 15px"><img src="examples/resources/img/bi_baasio.png"></a>
</div>
</div>
</div>
<div class="jumbotron">
<div class="container">
<h1>Javascript SDK</h1>
<p><strong>SDK는 앱을 개발할 때, 빠르고 쉽게 baas.io의 API에 사용하도록 설계되었습니다.</strong></p>
</div>
</div>
<div class="container">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="row">
<div class="col-sm-6 col-md-6 col-lg-6">
<h2>All Calls example app </h2>
<p><strong>앱을 개발하기위한 API에 대한 기본적인 호출 유형과 로그인 예제</strong></p>
<p><a class="btn btn-primary" href="examples/all_call/all_call.html"> click </a></p>
</div>
<div class="col-sm-6 col-md-6 col-lg-6">
<h2>Push examples</h2>
<p><strong>Push를 보내는 다양한 유형의 예제</strong></p>
<p><a class="btn btn-primary" href="examples/push/push.html"> click </a></p>
</div>
<div class="col-sm-6 col-md-6 col-lg-6">
<h2>File examples</h2>
<p><strong>파일을 업로드, 다운로드 예제</strong></p>
<p><a class="btn btn-primary" href="examples/file/file.html"> click </a></p>
</div>
<div class="col-sm-6 col-md-6 col-lg-6">
<h2>Use signup & signin to Kakao API</h2>
<p><strong>Kakao API을 이용하여 회원가입과 로그인을 하는 예제</strong></p>
<p><a class="btn btn-primary" href="examples/kakao/kakao.html"> click </a></p>
</div>
</div>
</div>
</body>
</html>