本文整理匯總了PHP中Wechat::getJsTicket方法的典型用法代碼示例。如果您正苦於以下問題:PHP Wechat::getJsTicket方法的具體用法?PHP Wechat::getJsTicket怎麽用?PHP Wechat::getJsTicket使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Wechat
的用法示例。
在下文中一共展示了Wechat::getJsTicket方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: showTip
function showTip($smarty, $tip, $db, $title)
{
$options = array('token' => WX_TOKEN, 'appid' => WX_APPID, 'encodingaeskey' => '6pnP7qHyqJ1kFXMjuO4Z3QrpOa9WfapsgkPOtXoZKC2', 'appsecret' => WX_SECRET, 'logcallback' => logdebug);
$we = new Wechat($options);
$auth = $we->checkAuth();
$js_ticket = $we->getJsTicket();
$smarty->assign('tip', $tip);
$smarty->assign('title', $title);
$url = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$smarty->assign('js_sign', $we->getJsSign($url));
$smarty->display('templates/tip.html');
$db->disconnect();
die;
}
示例2: Wechat
<?php
// WP_Wechat Handle
$wechat = new WP_Wechat();
// wechat-php-sdk Handle
$we = new Wechat(array('appsecret' => $wechat->app_secret, 'appid' => $wechat->app_id));
$auth = $we->checkAuth();
$js_ticket = $we->getJsTicket();
if (!$js_ticket) {
$errcode = $we->errCode;
$errtext = ErrCode::getErrText($weObj->errCode);
echo "獲取 js_ticket 失敗! 錯誤碼:{$errcode} 錯誤原因:{$errtext} ";
}
$https = isset($_SERVER['HTTPS']) && 'on' === $_SERVER['HTTPS'];
$url = ($https ? 'https://' : 'http://') . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$js_sign = $we->getJsSign($url);
?>
<script>
if(window.wx) {
wx.config({
debug: /debug=1/.test(location.href),
appId: '<?php
echo $js_sign['appId'];
?>
', // 必填,公眾號的唯一標識
timestamp: <?php
echo $js_sign['timestamp'];
?>
, // 必填,生成簽名的時間戳,切記時間戳是整數型,別加引號
nonceStr: '<?php
示例3: json_encode
<?php
include "../qy-sdk/wechat.class.php";
require 'api_rb.php';
require 'api_db.php';
$url = isset($_REQUEST['url']) ? $_REQUEST['url'] : '';
$timestamp = time();
$noncestr = 'Gds_Wechat_CSC_V2';
// Log
_log(json_encode(['url' => $url, 'timestamp' => $timestamp, 'noncestr' => $noncestr]));
// Check
if (empty($url)) {
header('Content-type:text/json;charset=utf-8');
echo json_encode(['result' => 'failed', 'error' => 'missing argument']);
die;
}
// Get Ticket and Sign
$options = ['token' => 'nizhidaoma', 'encodingaeskey' => 'xc8rRK4iOQjTJK9hOYhRrC9sPBJvF5Jhjq203iMC7vF', 'appid' => 'wxe85832e232e73f41', 'appsecret' => '4c8f1aa381675dd2569fc9482052afdc', 'debug' => true, 'logcallback' => '_log'];
$weObj = new Wechat($options);
$jsTicket = $weObj->getJsTicket();
$jsSign = $weObj->getJsSign($url, $timestamp, $noncestr);
// Return
header('Content-type:text/json;charset=utf-8');
echo json_encode(['result' => 'true', 'sign' => $jsSign]);
die;