堅(jiān)持為客戶提供有價(jià)值的服務(wù)和內(nèi)容

微網(wǎng)站制作教程圖解

商企云 | 2021-06-30 | 分享至:
商企云網(wǎng)站制作公司最近發(fā)現(xiàn)特別多的人在問微網(wǎng)站是什么,微網(wǎng)站有什么用,微網(wǎng)站怎么做,微網(wǎng)站建設(shè)流程等問題,今天,在這里為大家統(tǒng)一解答,希望能對(duì)各位愛學(xué)習(xí)人士有所幫助。 第一步:首先,需要在微信公眾平臺(tái)上注冊(cè)一個(gè)自己的服務(wù)號(hào)或者訂閱號(hào)。 第二步:申請(qǐng)公眾賬號(hào)成功后,便可以使用其基本功能了,當(dāng)然,要想做成自己的微信官網(wǎng),則需要進(jìn)入開發(fā)模式,接入第三方接口。 第三步:注冊(cè)成功并登陸第三方接口,將注冊(cè)好的微信公眾號(hào)添加到第三方接口上,所需信息在微信公眾號(hào)設(shè)置下的賬號(hào)信息里。 第四步:添加公眾賬號(hào)后,連接公眾平臺(tái)與第三方接口,如圖:登錄微信公眾平臺(tái),點(diǎn)擊最左側(cè)最下方的【開發(fā)者中心】,點(diǎn)擊開發(fā)模式。 第五步:最后,設(shè)計(jì)自己的微信官網(wǎng)。并且可在線預(yù)覽。 完成以上步驟后,并且認(rèn)證訂閱號(hào)或服務(wù)號(hào)后就可以做微信的二次開發(fā)了,比如我要制作一個(gè)群發(fā)功能的接口,需要使用一下微信接口: 1、獲取access token 2、新增臨時(shí)素材接口 3、上傳圖文消息素材接口 4、調(diào)用群發(fā)接口 接口代碼示例:WeixinApi.class.php appid=$appid; $this->appsecret=$appsecret; } //獲取token public function getToken(){ if($_COOKIE["exptime"]=="" || time()-$_COOKIE["create_time"]>=$_COOKIE["exptime"]){ $token=@file_get_contents("https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$this->appid}&secret={$this->appsecret}"); $tokenarr=json_decode($token,true); setcookie("exptime",$tokenarr["expires_in"],0,'/'); setcookie("access_token",$tokenarr["access_token"],0,'/'); setcookie("create_time",time(),0,'/'); }else{ $tokenarr=array( "access_token"=>$_COOKIE["access_token"], "expires_in"=>$_COOKIE["exptime"], "create_time"=>$_COOKIE["create_time"] ); } return $tokenarr; } private function sockupload($phost,$pport,$purl,$filename,$file_data=array()){ $host = $phost; $port = $pport; $errno = ''; $errstr = ''; $timeout = 30; $url = $purl; /*$form_data = array( 'name' => 'lijie', 'gender' => 'man', );*/ $file_data = array( array( 'name' => 'media', 'filename' => $filename, //'path' =>'1.jpg' ) ); // create connect $fp = fsockopen($host, $port, $errno, $errstr, $timeout); if(!$fp){ return false; } // send request srand((double)microtime()*1000000); $boundary = "---------------------------".substr(md5(rand(0,32000)),0,10); $data = "--$boundaryrn"; // form data if(count($form_data)>0){ foreach($form_data as $key=>$val){ $data .= "Content-Disposition: form-data; name="".$key.""rn"; $data .= "Content-type:text/plainrnrn"; $data .= rawurlencode($val)."rn"; $data .= "--$boundaryrn"; } } // file data if($filename!=""){ foreach($file_data as $file){ $data .= "Content-Disposition: form-data; name="".$file['name'].""; filename="".$file['filename'].""rn"; $pinfo=pathinfo($file['filename']); $data .= "Content-Type: ".$pinfo["extension"]."rnrn"; $data .= implode("",file($file['filename']))."rn"; $data .= "--$boundaryrn"; } } $data .="--rnrn"; $out = "POST ${url} HTTP/1.1rn"; $out .= "Host:${host}rn"; $out .= "Content-type:multipart/form-data; boundary=$boundaryrn"; // multipart/form-data $out .= "Content-length:".strlen($data)."rn"; $out .= "Connection:closernrn"; $out .= "${data}"; fputs($fp, $out); // get response $response = ''; while($row=fread($fp, 4096)){ $response .= $row; } $pos = strpos($response, "rnrn"); $response = substr($response, $pos+4); return $response; } //json數(shù)據(jù)提交 private function jsonUpload($url,$jsdata){ $data_string = $jsdata; $ch = curl_init(); curl_setopt ( $ch, CURLOPT_URL, $url ); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS,$data_string); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json;charset=utf-8', 'Content-Length: ' . strlen($data_string)) ); $result = curl_exec($ch); curl_close ( $ch ); return $result; } //上傳媒體接口 public function upload($type,$filename){ $tokens=$this->getToken(); $result=$this->sockupload("api.weixin.qq.com",80,"/cgi-bin/media/upload?access_token=".$tokens["access_token"]."&type={$type}",$filename); $media=json_decode($result,true); $this->media_id=$media['media_id']; return $this; } //上傳素材 public function uploadnews($title,$content,$author="",$url="",$digest="",$show_cover_pic="1"){ $articles=array( "articles"=>array( array( "thumb_media_id"=>$this->media_id, "author"=>$author, "title"=>urlencode($title), "content_source_url"=>$url, "content"=>urlencode($content), "digest"=>$digest, "show_cover_pic"=>"1" ) ) ); $tokens=$this->getToken(); $news=urldecode(json_encode($articles)); $result=$this->jsonUpload("api.weixin.qq.com/cgi-bin/media/uploadnews?access_token=".$tokens["access_token"]."",$news); $newsdata=json_decode($result,true); $this->media_id=$newsdata["media_id"]; return $this; } //群發(fā)接口 public function sendall(){ $arr=array( "filter"=>array("is_to_all"=>true,"group_id"=>""), "mpnews"=>array("media_id"=>$this->media_id), "msgtype"=>"mpnews" ); $json=json_encode($arr); $tokens=$this->getToken(); $result=$this->jsonUpload("api.weixin.qq.com/cgi-bin/message/mass/sendall?access_token=".$tokens["access_token"]."",$json); return $result; } } 使用: $weixin=new WeixinApi($appid,$appsecret); $result=$weixin->upload("image","圖片路徑")->uploadnews("文章標(biāo)題","文章內(nèi)容")->sendall();
掃二維碼與項(xiàng)目經(jīng)理溝通

7*24小時(shí)為您服務(wù)

解答:網(wǎng)站優(yōu)化,網(wǎng)站建設(shè),APP開發(fā),小程序開發(fā),H5開發(fā),品牌推廣,新聞推廣,輿情監(jiān)測(cè)等

  非常感謝您有耐心的讀完這篇文章:"微網(wǎng)站制作教程圖解",更多內(nèi)容請(qǐng)繼續(xù)瀏覽,我們將為您提供更多參考使用或?qū)W習(xí)交流的信息。我們還可為您提供:網(wǎng)站建設(shè)與開發(fā)、網(wǎng)站優(yōu)化品牌推廣、APP開發(fā)、小程序開發(fā)、新聞推廣等服務(wù),我們以“降低營(yíng)銷成本,提高營(yíng)銷效果”的服務(wù)理念,自創(chuàng)立至今,已成功服務(wù)過不同行業(yè)的1000多家企業(yè),獲得國(guó)家高新技術(shù)企業(yè)認(rèn)證,且擁有14項(xiàng)國(guó)家軟件著作權(quán),將力爭(zhēng)成為國(guó)內(nèi)企業(yè)心目中值得信賴的互聯(lián)網(wǎng)產(chǎn)品及服務(wù)提供商。如您需要合作,請(qǐng)掃碼咨詢,我們將誠(chéng)摯為您服務(wù)。
我要咨詢
姓名 :
電話 :
文章分類