Files
MBTI_wang/api/config/wechat.php
2026-03-17 12:39:38 +08:00

8 lines
244 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// 微信小程序配置
// 这里直接读取 .env 中的 WECHAT_APP_ID / WECHAT_APP_SECRET和现有配置保持一致
return [
'app_id' => env('WECHAT_APP_ID', ''),
'app_secret' => env('WECHAT_APP_SECRET', ''),
];