千家信息网

Android中微信单图文、多图文推送、列表中排序的示例分析

发表于:2024-11-11 作者:千家信息网编辑
千家信息网最后更新 2024年11月11日,这篇文章主要介绍了Android中微信单图文、多图文推送、列表中排序的示例分析,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。
千家信息网最后更新 2024年11月11日Android中微信单图文、多图文推送、列表中排序的示例分析

这篇文章主要介绍了Android中微信单图文、多图文推送、列表中排序的示例分析,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

postService($json);break;case 2: $json = '{"touser":"OPENID","msgtype":"image","image":{"media_id":"MEDIA_ID"}}';$this->postService($json);break;case 3: $json = '{"touser":"OPENID","msgtype":"voice","voice":{"media_id":"MEDIA_ID"}}';$this->postService($json);break;case 4: $json = '{"touser":"OPENID","msgtype":"video","video":{"media_id":"MEDIA_ID","title":"TITLE","description":"DESCRIPTION"}}';$this->postService($json);break;case 5: $json = '{"touser":"OPENID","msgtype":"music","music":{"title":"MUSIC_TITLE","description":"MUSIC_DESCRIPTION","musicurl":"MUSIC_URL","hqmusicurl":"HQ_MUSIC_URL","thumb_media_id":"THUMB_MEDIA_ID"}}';$this->postService($json);break;case 6: $json = '{"touser":"OPENID","msgtype":"news","news":{"articles": [{"title":"'.$array['title1'].'","description":"'.$array['description1'].'","url":"'.$array['url1'].'","picurl":"'.$array['picurl1'].'"},{"title":"'.$array['title2'].'","description":"'.$array['description2'].'","url":"'.$array['url2'].'","picurl":"'.$array['picurl2'].'"},{"title":"'.$array['title3'].'","description":"'.$array['description3'].'","url":"'.$array['url3'].'","picurl":"'.$array['picurl3'].'"}]}}';$this->postService($json);break;}}public function postService($json){$access_token = model('WeixinInterface')->getACCESS_TOKEN(330);//Log :: write("客服接口获得的accessToken是".$access_token, log :: INFO);$url = 'https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token='.$access_token;model('WeixinInterface')->getHttpResponsePOST($url,$json);}}?>---------------或者---------------------MODEL中public function Service($uid,$json){self::$wxInterFace = M('WXInterFace','wxmenu');$access_token = $this->getACCESS_TOKEN($uid);$url = 'https://api.weixin.qq.com/cgi-bin/message/custom/send?access_token='.$access_token;$this->getHttpResponsePOST($url,$json);}在ACTION中 //图文回复public function msgReturn(){$json = '{"touser":"'.strval($_SESSION['oauthopenid']).'","msgtype":"news","news":{"articles": [{"title":"大华双十一购房狂欢节,团购优惠等你来!","description":"","url":"http://dc.exweixin.com/index.php?app=Dhcheap&mod=Index&act=index&aid=11","picurl":"https://cache.yisu.com/upload/information/20201208/260/15126.jpg"},{"title":"一口价房源再享折上折","description":"","url":"http://dc.exweixin.com/index.php?app=RedPacket&mod=Coupon&act=welcome&uid=330","picurl":"https://cache.yisu.com/upload/information/20201208/260/15170.jpg"},{"title":"我要抢红包","description":"","url":"http://dc.exweixin.com/index.php?app=redPacket&mod=Welcome&act=welcome&uid=330","picurl":"https://cache.yisu.com/upload/information/20201208/260/15176.jpg"},{"title":"土豪排行榜","description":"","url":"http://dc.exweixin.com/index.php?app=RedPacket&mod=Index&act=ranking","picurl":"https://cache.yisu.com/upload/information/20201208/260/15185.jpg"},{"title":"我的钱包","description":"","url":"http://dc.exweixin.com/index.php?app=RedPacket&mod=Index&act=person&openid='.strval($_SESSION['oauthopenid']).'","picurl":"https://cache.yisu.com/upload/information/20201208/260/15210.jpg"}]}}';//调用客服接口$uid=330;M('CustomService','wxmenu')->Service($uid,$json);}//----------------------------------//列表中排序、效果1、2、3、代码
  • {$i+$n}
  • 感谢你能够认真阅读完这篇文章,希望小编分享的"Android中微信单图文、多图文推送、列表中排序的示例分析"这篇文章对大家有帮助,同时也希望大家多多支持,关注行业资讯频道,更多相关知识等着你来学习!

    0