neoamell_个人页

个人头像照片 neoamell
个人头像照片
0
3
0

个人介绍

暂无个人介绍

擅长的技术

获得更多能力
通用技术能力:

暂时未有相关通用技术能力~

云产品技术能力:

阿里云技能认证

详细说明
  • 提交了问题 2015-08-04

    新增部门名为中文时,返回系统繁忙

  • 提交了问题 2015-08-04

    新增部门名为中文时,返回系统繁忙

暂无更多信息
正在加载, 请稍后...
暂无更多信息
  • 提交了问题 2015-08-04

    新增部门名为中文时,返回系统繁忙

  • 提交了问题 2015-08-04

    新增部门名为中文时,返回系统繁忙

  • 回答了问题 2015-07-30

    有没有调用JSAPI的代码案例

    Re有没有调用JSAPI的代码案例 C# code   public static string getss()                 {                       WebRequest wrep = WebRequest.Create('https://oapi.dingtalk.com/gettoken?corpid=id&corpsecret=secret');             WebResponse wrp = wrep.GetResponse();             Stream strm = wrp.GetResponseStream();             StreamReader sr = new StreamReader(strm, Encoding.UTF8);             string jsonstr= sr.ReadToEnd();             sr.Close();             return jsonstr;//   {'access_token':'value','errcode':0,'errmsg':'ok'}           }亲测有用 ------------------------- Re有没有调用JSAPI的代码案例 发送消息,亲测有用 public string Send()         {             HttpWebRequest request = WebRequest.Create('https://oapi.dingtalk.com/message/send?access_token=access_token') as HttpWebRequest;             //'{\'errcode\':40035,\'errmsg\':\'不合法的参数\'}'             string ps = '{\'touser\':\'16|824\',\'toparty\':\'1\',\'agentid\':\'3917947\',\'msgtype\':\'text\',\'text\':{\'content\':\'this is a test memo four.\'}}';             request.Method = 'POST';             request.ContentType = 'application/json';             request.ContentLength = Encoding.UTF8.GetByteCount(ps);             Stream strs = request.GetRequestStream();             StreamWriter strw = new StreamWriter(strs,Encoding.GetEncoding('GB2312'));             strw.Write(ps);             strw.Close();             HttpWebResponse reponse = request.GetResponse() as HttpWebResponse;             Stream sts = reponse.GetResponseStream();             StreamReader sr = new StreamReader(sts,Encoding.GetEncoding('UTF-8'));             string s = sr.ReadToEnd();             sr.Close();             sts.Close();                        return s;         }
    踩0 评论0
正在加载, 请稍后...
滑动查看更多
正在加载, 请稍后...
暂无更多信息