All Downloads are FREE. Search and download functionalities are using the official Maven repository.

me.chanjar.weixin.cp.tp.service.WxCpTpOAuth2Service Maven / Gradle / Ivy

There is a newer version: 4.6.7.B
Show newest version
package me.chanjar.weixin.cp.tp.service;

/**
 * 
 *   构造第三方应用oauth2链接
 *   Created by feidian108 on 2023/3/24.
 * 
*

* 企业微信服务商文档 */ public interface WxCpTpOAuth2Service { /** *

   *   构造第三方应用oauth2链接(静默授权)
   * 
* @param redirectUri 授权后重定向的回调链接地址 * @param state 重定向后state参数 * @return url string */ String buildAuthorizeUrl(String redirectUri, String state); /** *
   *   构造第三方应用oauth2链接
   * 
* @param redirectUri 授权后重定向的回调链接地址 * @param state 重定向后state参数 * @param scope 应用授权作用域,snsapi_base:静默授权,snsapi_privateinfo:手动授权 * @return url string */ String buildAuthorizeUrl(String redirectUri, String state, String scope); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy