详细介绍微信第三方小程序代开发
微信申请第三方之后可以获取授权方的很多权限,主要的是生码和待开发,生码的第三方授权之前已经写了一篇文章,最近做了小程序待开发,总结一下写下来供大家参考
需要注意:如果在调试过程中返回了错误码请到小程序代开发api页面查看,
小程序代开发使用的域名是你申请第三方时候填写的域名,
小程序代码模板最多只有50个,可以删除然后重新添加。
准备工作:
申请微信第三方并且权限那边要选上代开发,第三方申请成功之后就是准备小程序了,需要两个小程序,一个作为小程序代码库,一个作为用户测试用,需要在第三方授权。
添加小程序代码库: 在第三方那边将小程序添加为开发小程序,然后该小程序就成为了第三方的开发小程序,之后该小程序提交的代码都会存入第三方草稿箱,你可以选择版本添加为模板,一个第三方最 多只能有50个模板。
代开发流程:
post请求公共方法,与微信服务器交互用
代码如下
protected
function curl_post( $curlHttp, $postdata ) {
$ch = curl_init();
//用curl发送数据给api
curl_setopt( $ch, CURLOPT_POST,
true
);
curl_setopt( $ch, CURLOPT_POST,
true
);
curl_setopt( $ch, CURLOPT_RETURNTRANSFER,
true
);
curl_setopt( $ch, CURLOPT_URL, $curlHttp );
curl_setopt( $ch, CURLOPT_POSTFIELDS, $postdata );
curl_setopt( $ch, CURLOPT_SSL_VERIFYPEER, FALSE );
curl_setopt( $ch, CURLOPT_SSL_VERIFYHOST, FALSE );
$response = curl_exec( $ch );
curl_close( $ch );
$result = json_decode( $response,
true
);
return
$result;
}
代码如下
protected
function buildRequestForm( array $param, $method, $target=
''
,$jump=
false
) {
$sHtml =
"
;
if
( !empty( $param ) ) {
foreach( $param as $key => $value ) {
$sHtml.=
""
;
}
}
$sHtml .=
""
;
if
($jump) $sHtml = $sHtml.
""
;
return
$sHtml;
}
代码如下
protectd function getAccessToken( $appId ) {
$accessToken =
''
;
if
( empty( $appId ) ) {
return
$accessToken;
}
// 中间的逻辑自己填充
return
$accessToken;
}
通过调用微信接口,给用户小程序指定小程序代码
代码如下
public
function commitCode() {
$appId = input(
'app_id'
,
''
);
$descript = input(
'descript'
,
'测试代码指定'
);
$version = input(
'version'
,
'V.1.0'
);
$templateId = input(
'template_id'
,
1
);
if
( empty( $appId ) ) {
$
this
->error( appid不能为空 );
return
;
}
if
( empty( $templateId ) && ( $templateId !=
0
) ) {
$
this
->error(
'模板id不能为空'
);
return
;
}
$accessToken = $
this
->getAccessToken( $appId );
// 个人信息我给清除了,空字符部分请自己补充
$extJson = array(
'extAppid'
=> $appId,
'ext'
=> array(
'attr1'
=>
'value1'
),
'extPages'
=> array(
'pages/index/index'
=> array(
'navigationBarTitleText'
=>
''
),
'pages/media/media'
=> array(
'navigationBarTitleText'
=>
''
)
),
'pages'
=> array(
'pages/index/index'
,
'pages/media/media'
),
'window'
=> array(
'backgroundColor'
=>
'#f8f8f8'
,
'navigationBarTextStyle'
=>
'white'
,
"navigationBarTitleText"
=>
""
,
'navigationBarBackgroundColor'
=>
'#2b3b48'
),
'tabBar'
=> array(
'list'
=> array(
array(
'text'
=>
''
,
'pagePath'
=>
'pages/index/index'
,
),
array(
'text'
=>
''
,
'pagePath'
=>
'pages/media/media'
,
)
)
),
'networkTimeout'
=> array(
'request'
=>
10000
,
'uploadFile'
=>
10000
,
'downloadFile'
=>
10000
,
'connectSocket'
=>
10000
)
);
$params = array(
'template_id'
=> $templateId,
'user_version'
=> $version,
'user_desc'
=> $descript,
'ext_json'
=> json_encode( $extJson, JSON_UNESCAPED_UNICODE )
);
$result = $
this
->curl_post(
'https://api.weixin.qq.com/wxa/commit?access_token='
.$accessToken, json_encode( $params, JSON_UNESCAPED_UNICODE ) );
if
( empty( $result ) || !empty( $result[
'errcode'
] ) ) {
$
this
->error(
'代码指定错误'
);
return
;
}
$
this
->success(
'操作成功'
);
return
;
}
代码如下
public
function getExpCode() {
$appId = input(
'app_id'
,
''
);
if
( empty( $appId ) ) {
$
this
->error( appid不能为空 );
return
;
}
$accessToken = $
this
->getAccessToken( $appId );
if
( empty( $accessToken ) ) {
$
this
->error(
'获取授权accessToken错误'
);
return
;
}
$params = array(
'access_token'
=> $accessToken
);
$result = $
this
->buildRequestForm( $params,
'GET'
,
'https://api.weixin.qq.com/wxa/get_qrcode?access_token='
.$accessToken,
true
);
echo $result;
exit;
}
代码如下
public
function bindTester() {
$appId = input(
'app_id'
,
''
);
$wxNumber = input(
'wx_number'
,
''
);
if
( empty( $appId ) ) {
$
this
->error( appid不能为空 );
return
;
}
if
( empty( $wxNumber ) ) {
$
this
->error( 微信号不能为空 );
return
;
}
$accessToken = $
this
->getAccessToken( $appId );
if
( empty( $accessToken ) ) {
$
this
->error(
'获取授权accessToken错误'
);
return
;
}
$params = array(
'wechatid'
=> $wxNumber
);
$result = $
this
->curl_post(
'https://api.weixin.qq.com/wxa/bind_tester?access_token='
.$accessToken, json_encode( $params ) );
print_r($result);
exit;
return
;
}
public
function unBindTester() {
$appId = input(
'app_id'
,
''
);
$wxNumber = input(
'wx_number'
,
''
);
if
( empty( $appId ) ) {
$
this
->error( appid不能为空 );
return
;
}
if
( empty( $wxNumber ) ) {
$
this
->error( 微信号不能为空 );
return
;
}
$accessToken = $
this
->getAccessToken( $appId );
if
( empty( $accessToken ) ) {
$
this
->error(
'获取授权accessToken错误'
);
return
;
}
$params = array(
'wechatid'
=> $wxNumber
);
$result = $
this
->curl_post(
'https://api.weixin.qq.com/wxa/unbind_tester?access_token='
.$accessToken, json_encode( $params ) );
print_r($result);
exit;
return
;
}
如果授权用户没有设置的话,需要对方进入小程序平台,在填写小程序信息的地方添加服务条目
代码如下
public
function getCategory() {
$appId = input(
'app_id'
,
''
);
if
( empty( $appId ) ) {
$
this
->error( appid不能为空 );
return
;
}
$accessToken = $
this
->getAccessToken( $appId );
if
( empty( $accessToken ) ) {
$
this
->error(
'获取授权accessToken错误'
);
return
;
}
$params = array(
'access_token'
=> $accessToken
);
$result = $
this
->buildRequestForm( $params,
'GET'
,
'https://api.weixin.qq.com/wxa/get_category?access_token='
.$accessToken,
true
);
echo $result;
exit;
}
代码如下
public
function submitAudit() {
$appId = input(
'app_id'
,
''
);
if
( empty( $appId ) ) {
$
this
->error( appid不能为空 );
return
;
}
$accessToken = $
this
->getAccessToken( $appId );
if
( empty( $accessToken ) ) {
$
this
->error(
'获取授权accessToken错误'
);
return
;
}
$params = array(
'item_list'
=> array(
array(
'address'
=>
'pages/index/index'
,
'tag'
=>
'IT科技'
,
'first_class'
=>
'IT科技'
,
'second_class'
=>
'硬件与设备'
,
'title'
=>
'生成二维码'
),
array(
'address'
=>
'pages/media/media'
,
'tag'
=>
'工具'
,
'first_class'
=>
'工具'
,
'second_class'
=>
'办公'
,
'title'
=>
'多媒体上传'
)
)
);
$result = $
this
->curl_post(
'https://api.weixin.qq.com/wxa/submit_audit?access_token='
.$accessToken, json_encode( $params, JSON_UNESCAPED_UNICODE ) );
echo
''
;
print_r($result);
exit;
$
this
->success(
'操作成功'
);
return
;
}
当审核通过之后,微信会给你第三方注册的回调地址推送一个审核结果
代码如下
public
function getAuditStatus (){
$appId = input(
'app_id'
,
''
);
if
( empty( $appId ) ) {
$
this
->error( appid不能为空 );
return
;
}
$accessToken = $
this
->getAccessToken( $appId );
if
( empty( $accessToken ) ) {
$
this
->error(
'获取授权accessToken错误'
);
return
;
}
$params = array(
'auditid'
=>
12334
);
$result = $
this
->curl_post(
'https://api.weixin.qq.com/wxa/get_auditstatus?access_token='
.$accessToken, json_encode( $params ) );
print_r($result);
exit;
return
;
}
代码如下
public
function release (){
$appId = input(
'app_id'
,
''
);
if
( empty( $appId ) ) {
$
this
->error( appid不能为空 );
return
;
}
$accessToken = $
this
->getAccessToken( $appId );
if
( empty( $accessToken ) ) {
$
this
->error(
'获取授权accessToken错误'
);
return
;
}
$result = $
this
->curl_post(
'https://api.weixin.qq.com/wxa/release?access_token='
.$accessToken,
'{}'
);
print_r($result);
exit;
return
;
}
就这样,小程序代开发就完成了,逻辑很简单,代码也没难度,本文章的代码仅供大家参考,如果有问题请评论指出,我尽量补充。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!