统计
  • 建站日期:2021-03-10
  • 文章总数:386 篇
  • 评论总数:415 条
  • 分类总数:9 个
  • 最后更新:10月20日
文章 源码分享

网站跳转微信打开微信小程序接口-PHP源码

创新博客
首页 源码分享 正文

PHP源码实现网站跳转微信打开小程序接口,实现其他平台引流到微信小程序,如快手、抖音等平台,实现网站快速跳转到小程序。进一步应用包括微信小程序支付功能以及跳转小程序观看广告后网页端下发奖励。


网站跳转微信打开微信小程序接口-PHP源码
-创新博客-专注于资源分享的blog
-第1
张图片

<?php

// 作者KongHen02
// 仅限非个人主体小程序 

$appid = ""; // 小程序appid
$appkey = ""; // 小程序密钥

// 获取微信开放平台token
$token = file_get_contents('https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid='.$appid.'&secret='.$appkey);
$token = json_decode($token, true);
$token = $token["access_token"];

// 获取微信小程序schemeUrl
$url='https://api.weixin.qq.com/wxa/generatescheme?access_token='.$token;

$data = json_encode(array(
    "jump_wxa" => array(
        "path" => "/pages/index/index", // 页面地址
        "query" => "" // 需要传递的参数,可留空:a=****&b=*****······
        )
    )
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_ENCODING, "");
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 15);
curl_setopt($ch, CURLOPT_TIMEOUT, 30);
curl_setopt($ch, CURLOPT_MAXREDIRS, 10);
curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    "Accept: application/json, text/plain, */*",
    "Accept-Language: zh-CN,zh;q=0.9,en;q=0.8",
    "Content-Type: application/json",
    "Origin: https://api.weixin.qq.com",
    "Content-Type: application/json"
));
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_ENCODING, "gzip");

$result = curl_exec($ch);

curl_close($ch);

//提取link
$link = json_decode($result, true)["openlink"];

$data = array(
    'code'=>200,
    'url'=>$link
    );

exit(json_encode($data));

?>

版权说明
文章采用: 《署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)》许可协议授权。
版权声明:未标注转载均为本站原创,转载时请以链接形式注明文章出处。如有侵权、不妥之处,请联系站长删除。敬请谅解!

这篇文章最后更新于2023-10-17,已超过 1 年没有更新,如果文章内容或图片资源失效,请留言反馈,我们会及时处理,谢谢!
电脑版微信多开技巧,无需用到第三方工具
« 上一篇
SSL证书生成系统更新,修复证书申请失败不提示依旧下下发的问题
下一篇 »
为了防止灌水评论,登录后即可评论!

HI ! 请登录
注册会员,享受下载全站资源特权。

最新文章

热门文章