zoukankan      html  css  js  c++  java
  • c# 微信开发 《主动发送内容》

    需要用户和公众号,在48小时内有过互动,不然发不出去。

      public const string customUrl = "https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token={0}";

    /// <summary> /// 主动推送微信消息 /// </summary> public static void PushWeiXinMessage(string PostData) { try { string Accsss_token = WeiXinCommom.GetAccsss_token(); string PostUrl = string.Format(WeiXinCommom.customUrl, Accsss_token); WeiXinCommom.PostData(PostUrl, PostData); }catch(Exception ex){ LogHelper.WriteFileLog("PushWeiXinMessageError", string.Format("{0}", ex.Message)); return; } } /// <summary> /// 返回要推送的文本信息 /// </summary> /// <param name="WeixinOpendID"></param> /// <param name="Content"></param> /// <returns></returns> public static string ReturnTextMessage(string WeixinOpendID, string Content) { string responeJsonStr = "{"; responeJsonStr += ""touser": "" + WeixinOpendID + "","; responeJsonStr += ""msgtype": "text","; responeJsonStr += ""text": {"; responeJsonStr += " "content": "" + Content + """; responeJsonStr += "},"; responeJsonStr += ""safe":"0""; responeJsonStr += "}"; return responeJsonStr; } /// <summary> /// 返回要推送的图片信息 /// </summary> /// <param name="WeixinOpendID"></param> /// <param name="Content"></param> /// <returns></returns> public static string ReturnImgMessage(string WeixinOpendID, string MEDIA_ID) { string responeJsonStr = "{"; responeJsonStr += ""touser": "" + WeixinOpendID + "","; responeJsonStr += ""msgtype": "image","; responeJsonStr += ""image": {"; responeJsonStr += " "media_id": "" + MEDIA_ID + """; responeJsonStr += "},"; responeJsonStr += ""safe":"0""; responeJsonStr += "}"; return responeJsonStr; }

      

  • 相关阅读:
    STL容器与拷贝构造函数
    BOOST_STATIC_ASSERT and BOOST_ASSERT
    STL map与Boost unordered_map
    C++ load shared library
    C++中模板不能把实现和声明放在两个不同的文件下
    C++ static、const和static const 以及它们的初始化
    Resource editor
    stdext A C++ STL Extensions Libary
    C++ boost shared_ptr as a hash_map key
    C++前置声明
  • 原文地址:https://www.cnblogs.com/yyyuguo/p/8426792.html
Copyright © 2011-2022 走看看