1. 程式人生 > >微信卡券匯入自定義code碼 php

微信卡券匯入自定義code碼 php

    public function QrCode()
      {
        $url = "http://api.weixin.qq.com/card/qrcode/create?access_token=" . $this->token;
        $data = array(
            "action_name" => "QR_CARD",
            "action_info" => array(
                "card" => array(
                    "card_id" => "pfTu-vmHzm3_nUrQuSg_rg1z4Zeo",
                    "outer_str" => "13b"
                )
            )
        );
//        file_put_contents("json.json",json_encode($data));die;
        $res = curl_post($url, json_encode($data));
        var_dump($res);