Henry's Notebook
Many strange things
搜索
菜单
导航
首页
最近更改
随机页面
帮助
Henry's Home
个人资料
个人资料
创建账户
登录
消息
目前您没有通知。请访问您的
讨论页
以查看过去消息。
页面工具
内容页面
讨论
查看源代码
历史
首页
»
页面s
查看“BBS OAuth”的源代码
←
BBS OAuth
页面上次由
HenryHu
编辑于11年前
因为以下原因,您没有权限编辑本页:
您所请求的操作仅限于该用户组的用户使用:emailconfirmed
您可以查看与复制此页面的源代码。
== 登录 == === 显示验证页面 === : '''GET''' /auth/auth {| class="wikitable" |- ! Parameter !! Type !! Description !! Optional !! Choices |- | redirect_uri || string || Redirection URI || No || displaycode |- | response_type || string || Preferred response type || No || code/token |- | client_id || string || Client ID of the client application || No |} === 获取Token === : '''GET/POST''' /auth/token {| class="wikitable" |- ! Parameter !! Type !! Description !! Optional !! Choices |- | redirect_uri || string || Redirection URI, should match with previous requests || No |- | grant_type || string || Type of object to exchange token with || No || authorization_code/refresh_token |- | code || string || Authorization code, required for grant_type = authorization_code || Yes || |- | refresh_token || string || Refresh token, required for grant_type = refresh_token || Yes || |- | client_id || string || Client ID of the client application || No || |- | client_secret || string || Client secret of the client application || No || |} * Return value ** Success: {"access_token": <string: Token>, "token_type": <string: Token type>, ["refresh_token": <string: Refresh Token>,] "expires_in": <int: Seconds before expire> } ** Failure: various HTTP error code
返回至
BBS OAuth
。