Skip to content

Commit 2b0f7e4

Browse files
committed
add getstarted
1 parent e2f5f6f commit 2b0f7e4

File tree

1 file changed

+125
-0
lines changed

1 file changed

+125
-0
lines changed

getstarted/index.html

+125
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1">
7+
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8+
<!-- for GA tracking-->
9+
<meta name="ippcat" content="GitHub" />
10+
<meta name="description" content="">
11+
<meta name="author" content="">
12+
13+
<title>Intuit Developer @ Github</title>
14+
15+
<link href="../css/bootstrap.min.css" rel="stylesheet">
16+
<link rel="shortcut icon" href="../assets/img/favicon.ico" />
17+
<script src="../resources/config.js"></script>
18+
19+
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
20+
<link href="../assets/css/ie10-viewport-bug-workaround.css" rel="stylesheet">
21+
22+
<!-- Custom styles for this template -->
23+
<link href="../css/justified-nav.css" rel="stylesheet">
24+
25+
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
26+
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
27+
<script src="../assets/js/ie-emulation-modes-warning.js"></script>
28+
29+
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
30+
<!--[if lt IE 9]>
31+
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
32+
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
33+
<![endif]-->
34+
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
35+
</head>
36+
<body>
37+
38+
<div class="container">
39+
40+
<!-- The justified navigation menu is meant for single line per list item.
41+
Multiple lines will require custom code not provided by Bootstrap. -->
42+
<div class="masthead">
43+
44+
<h3 id="titlehead" >Intuit Developer<a id="githublink" href="http://github.com/intuitdeveloper">Intuit Developer Github</a></br>
45+
</div>
46+
<hr>
47+
48+
<!-- Jumbotron -->
49+
<div class="jumbotron">
50+
<h3>Getting started with QuickBooks API</h3>
51+
</div>
52+
<hr>
53+
54+
55+
56+
<!-- oauth2 -->
57+
<div id="oauth2title" class="section-title feature"><span class="title">GET STARTED</span></div>
58+
<div id="oauth2" class="columns section in feature" style="height: auto;"></div>
59+
<ol class="list">
60+
<li>
61+
<p>Create a <a href="https://developer.intuit.com" target="_blank">developer account</a></p>
62+
</li>
63+
<li>
64+
<p>Create an <a href="https://developer.intuit.com/v2/ui#/app/startcreate" target="_blank">app</a></p>
65+
</li>
66+
<li>
67+
<p>Generate OAuth tokens using <a href="https://developer.intuit.com/v2/ui#/playground" target="_blank">playround</a></p>
68+
</li>
69+
<li>
70+
<p>Make the API call - <a href="#" onclick="myFunction()" >click</a> to see the curl request</p>
71+
<div style="display:none" id="myDIV">
72+
curl -X GET 'https://sandbox-quickbooks.api.intuit.com/v3/company/company id/companyinfo/company id/?minorversion=12' -H 'accept: application/json' -H 'authorization: Bearer accesstoken' -H 'content-type: application/json'
73+
</div>
74+
</li>
75+
</ol>
76+
<div class="separator gap"></div>
77+
78+
<!-- oauth -->
79+
<div id="oauthtitle" class="section-title feature"><span class="title">DEVELOPER TOOLS</span></div>
80+
<div id="oauth" class="columns section in feature" style="height: auto;"></div>
81+
<ol class="list">
82+
<li>
83+
<p>Explore API using <a href="https://developer.intuit.com/v2/apiexplorer?apiname=V3QBO#?id=Account" target="_blank">API explorer</a></p>
84+
</li>
85+
<li>
86+
<p>Download <a href="https://github.com/intuitdeveloper" target="_blank">samples</a></p>
87+
</li>
88+
<li>
89+
<p>Use SDK to code faster - <a href="https://github.com/intuit/QuickBooks-V3-DotNET-SDK" target="_blank">DotNet</a> - <a href="https://github.com/intuit/QuickBooks-V3-Java-SDK" target="_blank">Java</a> - <a href="https://github.com/intuit/QuickBooks-V3-PHP-SDK" target="_blank">PHP</a> - <a href="https://developer.intuit.com/docs/00_quickbooks_online/2_build/40_sdks/04_other_languages" target="_blank">Other</a></p>
90+
</li>
91+
<li>
92+
<p>Download <a href="https://developer.intuit.com/docs/00_quickbooks_online/2_build/20_explore_the_quickbooks_online_api/20_postman" target="_default">postman collection</a></p>
93+
</li>
94+
<li>
95+
<p>Use <a href="https://developer.intuit.com/v2/ui#/sandbox" target="_blank">sandbox</a> for testing</p>
96+
</li>
97+
</ol>
98+
99+
100+
101+
102+
103+
</div> <!-- /container -->
104+
105+
<!-- Site footer -->
106+
<footer class="footer">
107+
<nav class="footer-navigation">
108+
<p class="copyright">&copy; 2018 Intuit, Inc. All rights reserved. Intuit and QuickBooks are registered trademarks of Intuit Inc. </p>
109+
</nav>
110+
</footer>
111+
112+
<script>
113+
function myFunction() {
114+
var x = document.getElementById("myDIV");
115+
if (x.style.display === "none") {
116+
x.style.display = "block";
117+
} else {
118+
x.style.display = "none";
119+
}
120+
}
121+
122+
</script>
123+
124+
</body>
125+
</html>

0 commit comments

Comments
 (0)