25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <?php
- /*
- Author:XM
- Compeny:Spiders Travel
- */
- //获取jssdk配置
- require_once __DIR__.'/../jssdk/jssdk_wx.php';
- require_once __DIR__.'/../Common/Config.php';
- header("Access-Control-Allow-Origin:*");
- $jssdk = new JSSDK(APPID, APPSECRET);
- if (isset($_POST['url'])){
- $url=$_POST['url'];
- }else{
- $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://";
- $url = "$protocol$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
- }
- $signPackage = $jssdk->GetSignPackage($url);
- echo json_encode($signPackage);
|