91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2021-09-06 15:44:40 來源:億速云 閱讀:312 作者:小新 欄目:移動開發

這篇文章主要介紹了Android中微信單圖文、多圖文推送、列表中排序的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

<?php

/**

* @author yinhuiying(改于)

* @since version - 2014-10-31

* @deprecated version - 2014-10-31

* 騰訊客服接口

*/

class ServiceModel extends Model{



/**

* 客服接口(高級接口)

* @param int $uid

* @param String openid 微信唯一標識

* @param String array 回復數組內容

* @param int type 類型 1表示文字回復 2表示圖文回復

* */

public function Service($openid,$array,$type){

switch($type){

case 1: $json = '{

"touser":"'.strval($openid).'",

"msgtype":"text",

"text":

{

"content":"'.$array['content'].'"

}

}';

$this->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、

代碼

<li class="count">{$i+$n}</li>

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Android中微信單圖文、多圖文推送、列表中排序的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

龙川县| 泰兴市| 鄂温| 昭苏县| 达孜县| 买车| 德钦县| 福州市| 抚宁县| 阳西县| 阿拉善盟| 北流市| 富川| 绥中县| 海阳市| 苍梧县| 额济纳旗| 固始县| 洛隆县| 西充县| 天等县| 镇康县| 阿图什市| 彭水| 达孜县| 柘城县| 南涧| 营山县| 新野县| 肥东县| 工布江达县| 陆川县| 南和县| 马关县| 锡林浩特市| 岢岚县| 潜江市| 阿克苏市| 孟州市| 娱乐| 蚌埠市|