【致远OA接口】获取接口凭证token

(一)前言

        调用致远OA的rest接口,首先要获取接口的凭证token,如何获取的呢?下面我们一步一步来看看。

导航目录

(二)新建rest账号 

登录系统管理员system账号

新建rest账号

填入用户名和登录名,密码为系统自动生成

rest账号授权

(三)获取接口凭证(token)

get方式

post方式

(四)获取绑定登陆人的接口凭证(token)

 get方式

post方式


(二)新建rest账号 

登录系统管理员system账号

 【致远OA接口】获取接口凭证token_第1张图片

新建rest账号

 【致远OA接口】获取接口凭证token_第2张图片

填入用户名和登录名,密码为系统自动生成

备份账号和密码,这里只会显示一次

【致远OA接口】获取接口凭证token_第3张图片

rest账号:rest

rest密码:21ab8b55-a42a-46a4-9a50-8b9d226f2989

rest账号授权

创建好的rest账号需要授权对应的模块权限,我这里授权了全部模块了

【致远OA接口】获取接口凭证token_第4张图片

(三)获取接口凭证(token)

get方式

使用说明:

get方式获取token,通常是测试使用,返回的格式不固定,存在json格式和字符串两种格式(故开发者慎用get方式)。

 URL:

http://localhost/seeyon/rest/token/rest/21ab8b55-a42a-46a4-9a50-8b9d226f2989

参数描述:

路径参数rest/21ab8b55-a42a-46a4-9a50-8b9d226f2989则对应上面创建的rest账号密码

返回结果:

json格式,id即为token

【致远OA接口】获取接口凭证token_第5张图片

post方式

URL:

 http://localhost/seeyon/rest/token

参数:

{"userName":"rest","password":"21ab8b55-a42a-46a4-9a50-8b9d226f2989"}

返回结果:

json格式,id即为token

【致远OA接口】获取接口凭证token_第6张图片

(四)绑定登陆人的接口凭证token获取 

简要说明:

致远OA的部分接口,是需要绑定登录人才可以访问的,所以获取凭证时候需要绑定登陆人。

 get方式

描述:在上面get方式的基础上,加个loginName参数接口,值为OA存在的登录名。如下

URL:

http://localhost/seeyon/rest/token/rest/21ab8b55-a42a-46a4-9a50-8b9d226f2989?loginName=seeyon1

返回结果:

json格式,id即为token

【致远OA接口】获取接口凭证token_第7张图片

post方式

URL : http://localhost/seeyon/rest/token

参数:

{"userName":"rest","password":"21ab8b55-a42a-46a4-9a50-8b9d226f2989","loginName":"seeyon1"}

返回结果:

json格式,id即为token

【致远OA接口】获取接口凭证token_第8张图片

技术无限,分享有限;如有疑惑,欢迎交流 ~ 

你可能感兴趣的:(致远OA接口,html5,restful,小程序)