Last updated 3 months ago
获取用户信息接口,根据获取的访问令牌,可以获取用户基本信息,用户用户信息的校验以及账户的绑定。 步骤: 1、打开授权页面获取授权码 2、三方平台通过授权码换取访问令牌 3、根据访问令牌获取用户信息进行账号绑定
成功
const response = await fetch('https://prepc-real.headline.net/cats-gateway-auth2/auth2/user', { method: 'POST', headers: { "trace": "text", "company": "text", "Content-Type": "application/json" }, body: JSON.stringify({ "accessToken": "6f60d5e7-9b31-429c-84f1-a0a927d40961" }), }); const data = await response.json();
{}