微信支払企業支払のphp開発例


企業支払の応用シーン:公衆番号はすでに注目しているユーザーに支払い、例えば返金、財務決済などを処理する.
材料:微信公衆プラットフォーム開発ドキュメント
説明
1.証明書は自分の業者の中の証明書を使う必要があります(注意:証明書のパスは絶対パスでなければなりません.相対パスを使うと次のエラーが報告されます.
unable to use client certificate (no key found or wrong pass phrase?)
2.appid、secret、keyは自分のものを記入すればいい.
まず実現の考え方についてお話しします.
1.まずopenidを取得し、具体的な方法は以下を参照してください.
2.必須パラメータを記入し、署名を生成するなど、具体的な方法は以下を参照してください.
//***APIパラメータ*@var array*'mch_appid'#公衆番号APPID*'mchid'#商家番号*'device_info'#設備番号*'nonce_str'#ランダム文字列*'partner_trade_no'#商家注文番号*'openid'#入金ユーザーopenid*'check_name'#実名認証ユーザー*'re_user_name'#入金ユーザー名*'amount'#支払金額*'desc'#企業支払記述情報*'spbill_create_ip'#Ipアドレス*'sign'#署名*/
パラメータリファレンス:エンタープライズ支払APIのドキュメント
1.CODE(index.phpページ)を取得する
 
//              
$str="http://www.xxx.com/company_pay/getInfo.php";
$str_url=urlencode($str);
$appid = "xxxx3e5273505e";
$url = 'https://open.weixin.qq.com/connect/oauth2/authorize?appid='.$appid.'&redirect_uri='.$str_url.'&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect';

header("Location:".$url);


?>

1
2
3
4
5
6
7
8
9
10
11
2.情報コールバックページコード処理(getInfo.php)

$appid = "wxxxxx3505e";//         appid
$secret = "fxxxxx71xxx4cda2a671";//        secret
$code = $_GET["code"];
$get_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$secret.'&code='.$code.'&grant_type=authorization_code';

$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$get_token_url);
curl_setopt($ch,CURLOPT_HEADER,0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
$res = curl_exec($ch);
curl_close($ch);
$json_obj = json_decode($res,true);

//  openid access_token      
$access_token = $json_obj['access_token'];
$openid = $json_obj['openid'];
$get_user_info_url = 'https://api.weixin.qq.com/sns/userinfo?access_token='.$access_token.'&openid='.$openid.'&lang=zh_CN';

$ch = curl_init();
curl_setopt($ch,CURLOPT_URL,$get_user_info_url);
curl_setopt($ch,CURLOPT_HEADER,0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
$res = curl_exec($ch);
curl_close($ch);

//  json
$user_obj = json_decode($res,true);
//var_dump($user_obj);

echo "
"
."-----".$openid."*****"; $mch_appid=$appid; $mchid='10000401';// $nonce_str='vhmake'.rand(100000, 999999);// $partner_trade_no='VH'.time().rand(10000, 99999);// $openid=$openid;// $check_name='NO_CHECK';// ,NO_CHECK: FORCE_CHECK: ( , )OPTION_CHECK: ( , ) $re_user_name='[ ](http://www.vhmake.com)';// $amount=100;// ( , 100) $desc='[ ](http://www.vhmake.com)';// $spbill_create_ip=$_SERVER["REMOTE_ADDR"];// ip // $dataArr=array(); $dataArr['amount']=$amount; $dataArr['check_name']=$check_name; $dataArr['desc']=$desc; $dataArr['mch_appid']=$mch_appid; $dataArr['mchid']=$mchid; $dataArr['nonce_str']=$nonce_str; $dataArr['openid']=$openid; $dataArr['partner_trade_no']=$partner_trade_no; $dataArr['re_user_name']=$re_user_name; $dataArr['spbill_create_ip']=$spbill_create_ip; require 'api.php'; $sign=getSign($dataArr); echo "-----
:"
.$sign."
*****"
;//die; $data=" ".$mch_appid." ".$mchid." ".$nonce_str." ".$partner_trade_no." ".$openid." ".$check_name." ".$re_user_name." ".$amount." ".$desc." ".$spbill_create_ip." ".$sign." "; //var_dump($data); $ch = curl_init (); $MENU_URL="https://api.mch.weixin.qq.com/mmpaymkttransfers/promotion/transfers"; curl_setopt ( $ch, CURLOPT_URL, $MENU_URL ); curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, "POST" ); curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, FALSE ); curl_setopt ( $ch, CURLOPT_SSL_VERIFYHOST, FALSE ); $zs1="/xxxx/xxx/xxxxxx/apiclient_cert.pem";// : , $zs2="/xxxx/xxx/xxxxx/apiclient_key.pem"; curl_setopt($ch,CURLOPT_SSLCERT,$zs1); curl_setopt($ch,CURLOPT_SSLKEY,$zs2); // curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; // Windows NT 5.0)'); curl_setopt ( $ch, CURLOPT_FOLLOWLOCATION, 1 ); curl_setopt ( $ch, CURLOPT_AUTOREFERER, 1 ); curl_setopt ( $ch, CURLOPT_POSTFIELDS, $data ); curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, true ); $info = curl_exec ( $ch ); $infos=simplexml_load_string($info); if (curl_errno ( $ch )) { echo 'Errno:::' . curl_error ( $ch ); } curl_close ( $ch ); echo "-----
:"
; echo $infos->return_code; echo "
*****"
; ?>

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
3.署名関数ファイルの生成(api.php)

/**
 *    :     ,        
 */
function formatBizQueryParaMap($paraMap, $urlencode)
{
    $buff = "";
    ksort($paraMap);
    foreach ($paraMap as $k => $v)
    {
        if($urlencode)
        {
            $v = urlencode($v);
        }
        $buff .= $k . "=" . $v . "&";
    }
    if (strlen($buff) > 0)
    {
        $reqPar = substr($buff, 0, strlen($buff)-1);
    }
    return $reqPar;
}

/**
 *    :    
 */
function getSign($Obj)
{
    foreach ($Obj as $k => $v)
    {
        $Parameters[$k] = $v;
    }
    //     :        
    ksort($Parameters);
    $String = formatBizQueryParaMap($Parameters, false);
    //echo '【string1】'.$String.'';
    //     : string   KEY
    $String = $String."&key=vhmake666vhmake666vhmake666vhmak";
    //echo "【string2】".$String."";
    //     :MD5  
    $String = md5($String);
    //echo "【string3】 ".$String."";
    //     :        
    $result_ = strtoupper($String);
    //echo "【result】 ".$result_."";
    return $result_;
}

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
成功したらxml形式の戻りパラメータを返します(詳細は開発ドキュメントを参照).
<xml>
<return_code>return_code>
<return_msg>return_msg>
<mch_appid>mch_appid>
<mchid>mchid>
<device_info>device_info>
<nonce_str>nonce_str>
<result_code>result_code>
<partner_trade_no>partner_trade_no>
<payment_no>payment_no>
<payment_time>payment_time>
xml>

1
2
3
4
5
6
7
8
9
10
11
12
携帯電話快播BT工場