コード例 #1
0
 public QqClient(string appId, string appKey, string redirectUrl)
 {
     AppId       = appId;
     AppKey      = appKey;
     RedirectUrl = ApiUtils.GetAuthRedirectUrl(OAuthType.Qq, redirectUrl);
 }
コード例 #2
0
 public WeiboClient(string appKey, string appSecret, string redirectUrl)
 {
     AppKey = appKey;
     AppSecret = appSecret;
     RedirectUrl = ApiUtils.GetAuthRedirectUrl(OAuthType.Weibo, redirectUrl);
 }
コード例 #3
0
ファイル: WeixinClient.cs プロジェクト: Alexander360/SS.Login
 public WeixinClient(string appId, string appSecret, string redirectUrl)
 {
     AppId       = appId;
     AppSecret   = appSecret;
     RedirectUrl = ApiUtils.GetAuthRedirectUrl(OAuthType.Weixin, redirectUrl);
 }