定制 webhubworks/weclapp-api-laravel 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

webhubworks/weclapp-api-laravel

最新稳定版本:3.0.3.0

Composer 安装命令:

composer require webhubworks/weclapp-api-laravel

包简介

A Laravel wrapper around webhubworks/weclapp-api-core.

README 文档

README

Configuration

Make sure to have set the following environment variables in your .env file:

WECLAPP_API_BASE_URL=
WECLAPP_AUTH_TOKEN=

Usage

Example usage:

<?php

namespace App\Console\Commands;

use Illuminate\Console\Command;
use Webhub\WeclappApiLaravel\Facades\Weclapp;

class WeclappTest extends Command
{
    protected $signature = 'weclapp:test';

    protected $description = 'Tests the connection to weclapp';

    public function handle()
    {
        $weclappClient = Weclapp::create();

        $result = $weclappClient->getArticleCount();

        dd($result);
    }
}

Logging

By default, logging the requests and responses is enabled. You may set the WECLAPP_ENABLE_LOGGING environment variable to false to disable logging. Logs will be written to a daily file in the storage/logs directory. The log file will be named weclapp-api-YYYY-MM-DD.log.

统计信息

  • 总下载量: 28
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-05-15