💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 获取access_token与open_id值 * 案例 ~~~ $para = $D_A->access_token($u_id,$code); ~~~ * 参数说明 ~~~ 1.u_id 会员索引 2.code 授权获取code ~~~ * 成功回调参数data属性 ~~~ access_token 接口调用凭证 captcha desc_url description 错误码描述 error_code 错误码 expires_in access_token接口调用凭证超时时间,单位(秒) open_id 授权用户唯一标识 refresh_expires_in refresh_token凭证超时时间,单位(秒) refresh_token 用户刷新access_token scope 用户授权的作用域(Scope),使用逗号(,)分隔,开放平台几乎几乎每个接口都需要特定的Scope。 ~~~ * 注意事项 ~~~ 1.code有效期仅一次 2.有效期一般15天 ~~~