中文字幕日韩精品一区二区免费_精品一区二区三区国产精品无卡在_国精品无码专区一区二区三区_国产αv三级中文在线

企業(yè)怎么建立自己的微官網(wǎng),其實(shí)很簡(jiǎn)單。

2019-09-23    分類: 網(wǎng)站建設(shè)

網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)發(fā)現(xiàn)特別多的人在問(wèn)微網(wǎng)站是什么,問(wèn)我們能不能做,微網(wǎng)站有什么用,微網(wǎng)站怎么做,微網(wǎng)站建設(shè)流程等問(wèn)題,今天,在這里為大家統(tǒng)一解答,希望能對(duì)各位愛(ài)學(xué)習(xí)人士有所幫助。

其實(shí)我們認(rèn)為現(xiàn)在的人把微站神話了,在我們的概念里,其實(shí)他就和百度,網(wǎng)址一樣只是一個(gè)入口而已,沒(méi)有什么難處,只不過(guò)有些是需要,單獨(dú)的手機(jī)網(wǎng)站,來(lái)做為微網(wǎng)站的落地頁(yè)的。
1:首先,需要在微信公眾平臺(tái)上注冊(cè)一個(gè)自己的服務(wù)號(hào)或者訂閱號(hào),這一步其實(shí)很簡(jiǎn)單的。

需要在微信公眾平臺(tái)上注冊(cè)一個(gè)自己的服務(wù)號(hào)或者訂閱號(hào)


2:申請(qǐng)公眾賬號(hào)成功后,其實(shí)就等于你已經(jīng)有了自己的為網(wǎng)站了,便可以使用其基本功能了,當(dāng)然,要想做成自己的微信官網(wǎng),則需要進(jìn)入開(kāi)發(fā)模式,接入第三方接口?;蛘呃檬謾C(jī)網(wǎng)站做,手機(jī)網(wǎng)站模板參考www.rwnh.cn/mobile.html

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

微官網(wǎng)


3:注冊(cè)成功并登陸第三方接口,將注冊(cè)好的微信公眾號(hào)添加到第三方接口上,所需信息在微信公眾號(hào)設(shè)置下的賬號(hào)信息里。

注冊(cè)成功并登陸第三方接口


4:添加公眾賬號(hào)后,連接公眾平臺(tái)與第三方接口,如圖:登錄微信公眾平臺(tái),點(diǎn)擊最左側(cè)最下方的【開(kāi)發(fā)者中心】,點(diǎn)擊開(kāi)發(fā)模式。

登錄微信公眾平臺(tái)


第五步:最后,設(shè)計(jì)自己的微信官網(wǎng)。并且可在線預(yù)覽。

設(shè)計(jì)自己的微信官網(wǎng),并且可在線預(yù)覽


完成以上步驟后,并且認(rèn)證訂閱號(hào)或服務(wù)號(hào)后就可以做微信的二次開(kāi)發(fā)了,比如我要制作一個(gè)群發(fā)功能的接口,需要使用一下微信接口:
1、獲取access token
2、新增臨時(shí)素材接口
3、上傳圖文消息素材接口
4、調(diào)用群發(fā)接口
接口代碼示例:WeixinApi.class.php
class WeixinApi{
private $appid,$appsecret,$media_id;
public function __construct($appid="",$appsecret=""){
$this->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();

微官網(wǎng)是為適應(yīng)高速發(fā)展的移動(dòng)互聯(lián)網(wǎng)市場(chǎng)環(huán)境而誕生的一種基于WebApp和傳統(tǒng)PC版網(wǎng)站相融合的新型網(wǎng)站。微官網(wǎng)可兼容iOS、android、WP等多種智能手機(jī)操作系統(tǒng),可便捷的與微信、微博等網(wǎng)絡(luò)互動(dòng)咨詢平臺(tái)鏈接,簡(jiǎn)言之,微官網(wǎng)就是適應(yīng)移動(dòng)客戶端瀏覽體驗(yàn)與交互性能要求的新一代網(wǎng)站。
優(yōu)點(diǎn)

1、不用注冊(cè)域名更方便
2、不用購(gòu)買空間更節(jié)約
3、不用進(jìn)行網(wǎng)站備案更省時(shí)

4、多款行業(yè)模版隨意選擇,多種內(nèi)頁(yè)列表展現(xiàn)方式,布局采用DIV+CSS技術(shù),簡(jiǎn)潔大方,拓展性強(qiáng),無(wú)限制頁(yè)面數(shù)量與容量,頁(yè)面圖片任意編輯,自動(dòng)適應(yīng)屏幕比例,移動(dòng)客戶端界面視覺(jué)效果強(qiáng),版面豐富,布局靈活,擴(kuò)展性強(qiáng)

5、應(yīng)用HTML5技術(shù)提升瀏覽體驗(yàn)與交互性能,訪問(wèn)速度更快,更安全,用戶體驗(yàn)更佳
6、內(nèi)置一鍵導(dǎo)航功能,可個(gè)性化定制功能模塊,自定義微網(wǎng)站導(dǎo)航
7、提供在線支付,購(gòu)物,等多種電商移動(dòng)互聯(lián)網(wǎng)開(kāi)發(fā)

網(wǎng)頁(yè)名稱:企業(yè)怎么建立自己的微官網(wǎng),其實(shí)很簡(jiǎn)單。
路徑分享:http://www.rwnh.cn/news/80517.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站內(nèi)鏈、網(wǎng)站維護(hù)做網(wǎng)站、響應(yīng)式網(wǎng)站App設(shè)計(jì)、服務(wù)器托管

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

微信小程序開(kāi)發(fā)
三江| 赤峰市| 寻甸| 陇南市| 天津市| 本溪市| 开江县| 扎赉特旗| 龙江县| 久治县| 炎陵县| 灌云县| 利津县| 昌图县| 米林县| 微博| 房山区| 朝阳市| 道孚县| 革吉县| 舒城县| 株洲市| 鞍山市| 衡阳县| 玉环县| 肇州县| 固镇县| 永德县| 襄垣县| 荣昌县| 苍山县| 阆中市| 常山县| 南通市| 行唐县| 临邑县| 秭归县| 阿克苏市| 大石桥市| 准格尔旗| 保亭|