diff --git a/README.md b/README.md
index bb0492f..a1fe736 100644
--- a/README.md
+++ b/README.md
@@ -133,7 +133,12 @@
- 理解OAuth 2.0, 介绍Oauth2很不错的文章
+ 理解OAuth 2.0, 介绍Oauth2各类grant_type的使用
+
+
+
+
+ OAuth2:隐式授权(Implicit Grant)类型的开放授权, 介绍grant_type='implicit'模式
diff --git a/others/oauth_test.txt b/others/oauth_test.txt
index d258903..7532ee9 100644
--- a/others/oauth_test.txt
+++ b/others/oauth_test.txt
@@ -33,7 +33,7 @@ grant_type(授权方式)
1.authorization_code 授权码模式(即先登录获取code,再获取token)
2.password 密码模式(将用户名,密码传过去,直接获取token)
3.refresh_token 刷新token
-4.implicit 简化模式(获取URL Hash传递token)
+4.implicit 简化模式(在redirect_uri 的Hash传递token; Auth客户端运行在浏览器中,如JS,Flash)
5.client_credentials 客户端模式(无用户,用户向客户端注册,然后客户端以自己的名义向'服务端'获取资源)