Esempio n. 1
0
 public QqClient(string appId, string appKey, string redirectUrl)
 {
     AppId       = appId;
     AppKey      = appKey;
     RedirectUrl = ApiUtils.GetAuthRedirectUrl(OAuthType.Qq, redirectUrl);
 }
Esempio n. 2
0
 public WeiboClient(string appKey, string appSecret, string redirectUrl)
 {
     AppKey = appKey;
     AppSecret = appSecret;
     RedirectUrl = ApiUtils.GetAuthRedirectUrl(OAuthType.Weibo, redirectUrl);
 }
Esempio n. 3
0
 public WeixinClient(string appId, string appSecret, string redirectUrl)
 {
     AppId       = appId;
     AppSecret   = appSecret;
     RedirectUrl = ApiUtils.GetAuthRedirectUrl(OAuthType.Weixin, redirectUrl);
 }