Ejemplo n.º 1
0
        /// <summary>
        /// 获取企业的永久授权码
        /// </summary>
        /// <param name="tmpAuthCode">回调接口(tmp_auth_code)获取的临时授权码</param>
        /// <returns>
        /// permanent_code	永久授权码
        ///  corp_info 授权方企业信息
        /// corpid 授权方企业id
        /// corp_name 授权方企业名称
        /// </returns>
        public PermanentCode GetPermanentCode(string suiteAccessToken, string tmpAuthCode)
        {
            string postUrl  = "https://oapi.dingtalk.com/service/get_permanent_code?suite_access_token=" + suiteAccessToken;
            string postData = "{\"tmp_auth_code\": \"" + tmpAuthCode + "\"}";

            string result = WebRequestPost(postUrl, postData);

            var           ser           = new DataContractJsonSerializer(typeof(PermanentCode));
            var           ms            = new MemoryStream(Encoding.UTF8.GetBytes(result));
            PermanentCode permanentCode = (PermanentCode)ser.ReadObject(ms);

            return(permanentCode);
        }
Ejemplo n.º 2
0
        /// <summary>
        /// 保存服务器推送临时授权码
        /// </summary>
        /// <param name="tb"></param>
        public void SaveTmpAuthCode(Hashtable tb)
        {
            SuiteKeyInfo    suiteKeyInfo = new SuiteKeyInfo(tb["SuiteKey"]);
            DingApiDispatch dingApi      = new DingApiDispatch(suiteKeyInfo.SuiteKey, suiteKeyInfo.SuiteSecret,
                                                               suiteKeyInfo.SuiteTicket);

            //用临时授权码获得永久授权码
            PermanentCode permanentCode = dingApi.GetPermanentCode(suiteKeyInfo.SuiteToken, tb["AuthCode"].ToString());

            SuiteCorpInfo suiteCorp = new SuiteCorpInfo(SuiteCorpInfo.Columns.Corpid,
                                                        permanentCode.auth_corp_info.corpid);

            suiteCorp.SuiteKey      = suiteKeyInfo.SuiteKey;
            suiteCorp.TmpAuthCode   = tb["AuthCode"].ToString();
            suiteCorp.PermanentCode = permanentCode.permanent_code;
            suiteCorp.Corpid        = permanentCode.auth_corp_info.corpid;
            suiteCorp.CorpName      = permanentCode.auth_corp_info.corp_name;

            //获取企业授权的access_token
            CorpAccessToken corpAccessToken = dingApi.GetCorpToken(suiteKeyInfo.SuiteToken, suiteCorp.Corpid,
                                                                   suiteCorp.PermanentCode);

            suiteCorp.AccessToken  = corpAccessToken.access_token;
            suiteCorp.TokenExpires = DateTime.Now.AddSeconds(corpAccessToken.expires_in);

            //获取企业授权的授权数据
            AuthCorp authCorp = dingApi.GetAuthInfo(suiteKeyInfo.SuiteKey, suiteKeyInfo.SuiteToken, suiteCorp.Corpid,
                                                    suiteCorp.PermanentCode);

            suiteCorp.CorpLogoUrl = authCorp.auth_corp_info.corp_logo_url;
            suiteCorp.Mobile      = authCorp.auth_user_info.mobile;
            suiteCorp.Name        = authCorp.auth_user_info.name;

            suiteCorp.Save();

            try
            {
                foreach (AgentInfo angInfo in authCorp.auth_info.agent)
                {
                    SuiteCorpAgent suiteCorpAgent = new Select().From(SuiteCorpAgent.Schema)
                                                    .Where(SuiteCorpAgent.Columns.CorpId).IsEqualTo(suiteCorp.Corpid)
                                                    .And(SuiteCorpAgent.Columns.AgentId).IsEqualTo(angInfo.agentid)
                                                    .ExecuteSingle <SuiteCorpAgent>() ?? new SuiteCorpAgent();
                    suiteCorpAgent.SuiteKey  = suiteKeyInfo.SuiteKey;
                    suiteCorpAgent.CorpId    = suiteCorp.Corpid;
                    suiteCorpAgent.AgentId   = angInfo.agentid;
                    suiteCorpAgent.AgentName = angInfo.agent_name;
                    suiteCorpAgent.LogoUrl   = angInfo.logo_url;
                    suiteCorpAgent.Appid     = angInfo.appid;

                    dingApi.ActivateSuite(suiteKeyInfo.SuiteKey, suiteKeyInfo.SuiteToken, suiteCorp.Corpid,
                                          suiteCorp.PermanentCode);
                    Agent agent = dingApi.GetAgent(suiteKeyInfo.SuiteKey, suiteKeyInfo.SuiteToken, suiteCorp.Corpid,
                                                   suiteCorp.PermanentCode, suiteCorpAgent.AgentId);
                    suiteCorpAgent.Description = agent.description;
                    suiteCorpAgent.IsClose     = agent.close;

                    suiteCorpAgent.Save();
                }
            }
            catch (Exception ex)
            {
                Helper.WriteLog("Err:" + ex.Message);
            }
        }