107 lines
5.6 KiB
HTML
107 lines
5.6 KiB
HTML
<!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/2.0.1/css/bootstrap.min.css" rel="stylesheet">
|
|
<style type="text/css">
|
|
body {
|
|
padding-top: 60px;
|
|
padding-bottom: 40px;
|
|
}
|
|
</style>
|
|
<link href="https://d7im4lln3lvbg.cloudfront.net/bootstrap/2.0.1/css/bootstrap-responsive.min.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]-->
|
|
<script type="text/javascript">
|
|
|
|
var _gaq = _gaq || [];
|
|
_gaq.push(['_setAccount', 'UA-31328878-1']);
|
|
_gaq.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
|
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
|
})();
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<!-- Main hero unit for a primary marketing message or call to action -->
|
|
<div class="hero-unit">
|
|
<h1>Learn REST: A REST Tutorial</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>Get Started</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>Get Started</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>Get Better</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>Get Building</h2>
|
|
<p>Introducing RestExpress, a Java framework to get building RESTful services quickly.</p>
|
|
</div>
|
|
</div> -->
|
|
<hr>
|
|
<footer>
|
|
<p>
|
|
©Pearson eCollege, 2012. All rights reserved.
|
|
</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://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
|
|
<script src="https://d7im4lln3lvbg.cloudfront.net/bootstrap/2.0.1/js/bootstrap.min.js"></script>
|
|
<a href="https://github.com/tfredrich/RestApiTutorial.com"><img style="position: absolute; top: 0; right: 0; border: 0; z-index: 1050;" src="https://a248.e.akamai.net/camo.github.com/e6bef7a091f5f3138b8cd40bc3e114258dd68ddf/687474703a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub"></a>
|
|
</body>
|
|
</html>
|