溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

使用PHP怎么操作微信網(wǎng)頁(yè)授權(quán)配置文件

發(fā)布時(shí)間:2021-06-08 15:50:47 來(lái)源:億速云 閱讀:219 作者:Leah 欄目:開(kāi)發(fā)技術(shù)

這篇文章將為大家詳細(xì)講解有關(guān)使用PHP怎么操作微信網(wǎng)頁(yè)授權(quán)配置文件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

代碼如下:

使用PHP怎么操作微信網(wǎng)頁(yè)授權(quán)配置文件

<?php
//配置文件
return [
  'weixin'=>[
      /**
       * Debug 模式,bool 值:true/false
       *
       * 當(dāng)值為 false 時(shí),所有的日志都不會(huì)記錄
       */
      'debug' => true,

      /**
       * 賬號(hào)基本信息,請(qǐng)從微信公眾平臺(tái)/開(kāi)放平臺(tái)獲取
       */
      'app_id' => 'your-app-id',     // AppID  
      'secret' => 'your-app-secret',   // AppSecret
      'token'  => 'your-token',     // Token
      'aes_key' => '',          // EncodingAESKey,安全模式與兼容模式下請(qǐng)一定要填寫(xiě)!??!

      /**
       * 日志配置
       *
       * level: 日志級(jí)別, 可選為:
       *     debug/info/notice/warning/error/critical/alert/emergency
       * permission:日志文件權(quán)限(可選),默認(rèn)為null(若為null值,monolog會(huì)取0644)
       * file:日志文件位置(絕對(duì)路徑!!!),要求可寫(xiě)權(quán)限
       */
      'log' => [
        'level'   => 'debug',
        'permission' => 0777,
        'file'    => '/tmp/easywechat.log',
      ],

      /**
       * OAuth 配置
       *
       * scopes:公眾平臺(tái)(snsapi_userinfo / snsapi_base),開(kāi)放平臺(tái):snsapi_login
       * callback:OAuth授權(quán)完成后的回調(diào)頁(yè)地址
       */
      'oauth' => [
        'scopes'  => ['snsapi_userinfo'],
        'callback' => '/examples/oauth_callback.php',
      ],

      /**
       * 微信支付
       */
      'payment' => [
        'merchant_id'    => 'your-mch-id',
        'key'        => 'key-for-signature',
        'cert_path'     => 'path/to/your/cert.pem', // XXX: 絕對(duì)路徑?。。?!
        'key_path'      => 'path/to/your/key',   // XXX: 絕對(duì)路徑?。。。?
        // 'device_info'   => '013467007045764',
        // 'sub_app_id'   => '',
        // 'sub_merchant_id' => '',
        // ...
      ],

      /**
       * Guzzle 全局設(shè)置
       *
       * 更多請(qǐng)參考: http://docs.guzzlephp.org/en/latest/request-options.html
       */
      'guzzle' => [
        'timeout' => 3.0, // 超時(shí)時(shí)間(秒)
        //'verify' => false, // 關(guān)掉 SSL 認(rèn)證(強(qiáng)烈不建議?。。。?
      ],
  ]
];

重點(diǎn)說(shuō)明:

1--

'app_id' => 'your-app-id', // AppID
'secret' => 'your-app-secret', // AppSecret
'token' => 'your-token', // Token
說(shuō)明:登錄微信公眾號(hào)平臺(tái)獲取:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421137522
使用PHP怎么操作微信網(wǎng)頁(yè)授權(quán)配置文件
這里作者使用的測(cè)試號(hào),
地址如下:https://mp.weixin.qq.com/debug/cgi-bin/sandbox?t=sandbox/login
使用PHP怎么操作微信網(wǎng)頁(yè)授權(quán)配置文件
使用PHP怎么操作微信網(wǎng)頁(yè)授權(quán)配置文件
'token' => 'your-token', // Token 可以隨便填寫(xiě) 最后要和微信設(shè)置的一樣就可以的

2--

/**
 * OAuth 配置
 *
 * scopes:公眾平臺(tái)(snsapi_userinfo / snsapi_base),開(kāi)放平臺(tái):snsapi_login
 * callback:OAuth授權(quán)完成后的回調(diào)頁(yè)地址
 */
'oauth' => [
  'scopes'  => ['snsapi_userinfo'],
  'callback' => '/examples/oauth_callback.php',
],

說(shuō)明:
snsapi_userinfo :彈出授權(quán)
snsapi_base 靜默授權(quán)
'callback' => '/examples/oauth_callback.php', 授權(quán)過(guò)后跳轉(zhuǎn)的方法

3--

 'guzzle' => [
        'timeout' => 3.0, // 超時(shí)時(shí)間(秒)
        //'verify' => false, // 關(guān)掉 SSL 認(rèn)證(強(qiáng)烈不建議?。。。?
      ],
說(shuō)明:
開(kāi)啟 //'verify' => false, // 關(guān)掉 SSL 認(rèn)證(強(qiáng)烈不建議!?。。?/pre>

結(jié)果:

 'guzzle' => [
        'timeout' => 3.0, // 超時(shí)時(shí)間(秒)
        //'verify' => false, // 關(guān)掉 SSL 認(rèn)證(強(qiáng)烈不建議?。。。?
      ],

在用微信掃一掃關(guān)注測(cè)試號(hào)
方便后面的調(diào)試

使用PHP怎么操作微信網(wǎng)頁(yè)授權(quán)配置文件

關(guān)于使用PHP怎么操作微信網(wǎng)頁(yè)授權(quán)配置文件就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI