Initial checkin
This commit is contained in:
106
index.html
Normal file
106
index.html
Normal file
@ -0,0 +1,106 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>REST API Tutorial</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="The REST API Tutorial. Learn REST API best practices.">
|
||||
<meta name="author" content="Todd Fredrich, Pearson eCollege">
|
||||
<!-- Le styles -->
|
||||
<link href="https://d7im4lln3lvbg.cloudfront.net/bootstrap/css/bootstrap.css" rel="stylesheet">
|
||||
<style type="text/css">
|
||||
body {
|
||||
padding-top: 60px;
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
</style>
|
||||
<link href="https://d7im4lln3lvbg.cloudfront.net/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
|
||||
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
|
||||
<![endif]-->
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<!-- Main hero unit for a primary marketing message or call to action -->
|
||||
<div class="hero-unit">
|
||||
<h1>REST API Best Practices</h1>
|
||||
<p>Building restful web services, like other programming skills is <strong>part art, part science</strong>. As the Internet industry progresses, creating a REST API becomes more concrete, with emerging best practices. As RESTful Web services don't follow a prescribed standard except for HTTP, it's important to build your RESTful API in accordance with industry best practices to ease development and simplify client adoption.</p>
|
||||
<p>Presently, there aren't a lot of REST API guides to help the lonely developer. <a href="http://www.restapitutorial.com">RestApiTutorial.com</a> is dedicated to tracking REST API best practices and making resources available to enable quick reference and self education for the development crafts-person. We'll discuss both the art and science of creating REST Web services.</p>
|
||||
<p>Jump in with <a href="restquicktips.html">REST API Quick Tips</a>, a few overarching concepts (based on <a href="http://37signals.com/svn/posts/3018-api-design-for-humans" target="_blank">this post</a> from <a href="http://www.37signals.com" rel="nofollow" target="_blank">37 Signals</a>) created to get you started on the right track.</p>
|
||||
<p><a class="btn btn-primary btn-large" href="restquicktips.html">Get Started »</a></p>
|
||||
</div>
|
||||
<!-- <div class="row">
|
||||
<div class="span3">
|
||||
<a href="rest-api-overview.html"><img src="./img/restful-api-overview.jpg" alt="RESTful API Overview" height="200" width="200" /></a>
|
||||
<h2>Overview</h2>
|
||||
<p>
|
||||
What is REST? Discover what the six constraints are for creating a RESTful API.
|
||||
</p>
|
||||
</div>
|
||||
<div class="span3">
|
||||
<a href="rest-api-tips.html"><img src="./img/helpful-tips.jpg" alt="Helpful Tips" height="200" width="200" /></a>
|
||||
<h2>Quick Tips</h2>
|
||||
<p>
|
||||
Get started quickly, creating your RESTful API quickly with these high-level, over-arching quick tips.
|
||||
</p>
|
||||
</div>
|
||||
<div class="span3">
|
||||
<a href="rest-api-topics.html"><img src="./img/advanced-topics.jpg" alt="Advanced Topics" width="200" height="200" /></a>
|
||||
<h2>Advanced Topics</h2>
|
||||
<p>
|
||||
Ready to dive deeper in the creating RESTful services? Discover the more esoteric concepts of REST APIs.
|
||||
</p>
|
||||
</div>
|
||||
<div class="span3">
|
||||
<a href="rest-api-converstations.html"><img src="./img/conversations.png" alt="Conversations" width="200" height="200" /></a>
|
||||
<h2>Conversations</h2>
|
||||
<p>
|
||||
Share your wisdom or ask a question about creating REST APIs and Web services.
|
||||
</p>
|
||||
</div>
|
||||
</div> -->
|
||||
<hr>
|
||||
<footer>
|
||||
<p>
|
||||
©Pearson eCollege, 2012. All rights reserved.
|
||||
Submit changes, corrections, questions, or comments via <a href="https://twitter.com/tfredrich">twitter</a> or <a href="mailto:tfredrich@gmail.com?subject=REST API Tutorial Question">email</a>.
|
||||
</p>
|
||||
<p></p>
|
||||
</footer>
|
||||
</div> <!-- /container -->
|
||||
<div class="navbar navbar-fixed-top">
|
||||
<div class="navbar-inner">
|
||||
<div class="container">
|
||||
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a>
|
||||
<a class="brand" href="http://www.restapitutorial.com">REST API Tutorial</a>
|
||||
<div class="nav-collapse">
|
||||
<ul class="nav">
|
||||
<li class="active"><a href="http://www.restapitutorial.com">Home</a></li>
|
||||
<li><a href="restquicktips.html">REST Quick Tips</a></li>
|
||||
<li><a href="httpmethods.html">HTTP Methods</a></li>
|
||||
<li><a href="httpstatuscodes.html">HTTP Status Codes</a></li>
|
||||
<li><a href="resources.html">Resources</a></li>
|
||||
</ul>
|
||||
</div><!--/.nav-collapse -->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Le javascript
|
||||
================================================== -->
|
||||
<!-- Placed at the end of the document so the pages load faster -->
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/jquery/jquery.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-transition.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-alert.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-modal.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-dropdown.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-scrollspy.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-tab.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-tooltip.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-popover.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-button.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-collapse.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-carousel.js"></script>
|
||||
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/js/bootstrap-typeahead.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user