Add more description, update font-family

0.5
LSZ 2016-05-31 00:18:31 +08:00
parent ae949e8f92
commit eb3b330db3
2 changed files with 20 additions and 0 deletions

View File

@ -19,6 +19,12 @@
<title><decorator:title default=""/> - Spring Security&Oauth2</title>
<link href="${contextPath}/resources/bootstrap.min.css" rel="stylesheet"/>
<style>
body {
font-family: "Microsoft YaHei", Arial;
}
</style>
<decorator:head/>
</head>

View File

@ -63,5 +63,19 @@
<a href="${contextPath}/m/dashboard">Mobile</a>
</li>
</ul>
<div class="well well-sm">
<p>
<strong>说明</strong>: Unity与Mobile菜单需要先获取到<code>access_token</code>后才能正常访问; 可以尝试在URL后面任意添加access_token参数值试试效果,
<br/>
如: <a href="${contextPath}/m/dashboard?access_token=i_am_testing_access_token">${contextPath}/m/dashboard?access_token=i_am_testing_access_token</a>
</p>
<p>
请求受保护的资源时传递
<mark>Access Token</mark>
有两种方式, 方式一在URL参数中添加<code>access_token</code>, 方式二在请求的Header中添加 <em>Authorization</em>, 其值为 <em>bearer
your_access_token</em>
</p>
</div>
</body>
</html>