• 小程序码
    • 获取小程序码
      • 接口A: 适用于需要的码数量较少的业务场景
      • 接口B:适用于需要的码数量极多,或仅临时使用的业务场景
    • 获取小程序二维码
  • #

    小程序码

    获取小程序码

    接口A: 适用于需要的码数量较少的业务场景

    API:

    1. $app->app_code->get(string $path, array $optional = []);

    其中 $optional 为以下可选参数:

    • width Int - 默认 430 二维码的宽度
    • auto_color 默认 false 自动配置线条颜色,如果颜色依然是黑色,则说明不建议配置主色调
    • line_color 数组,auto_colorfalse 时生效,使用 rgb 设置颜色 例如 ,示例:["r" => 0,"g" => 0,"b" => 0]

    示例代码:

    1. $response = $app->app_code->get('path/to/page');
    2. // 或者
    3. $response = $app->app_code->get('path/to/page', [
    4. 'width' => 600,
    5. //...
    6. ]);
    7. // 或者指定颜色
    8. $response = $app->app_code->get('path/to/page', [
    9. 'width' => 600,
    10. 'line_color' => [
    11. 'r' => 105,
    12. 'g' => 166,
    13. 'b' => 134,
    14. ],
    15. ]);
    16. // $response 成功时为 EasyWeChat\Kernel\Http\StreamResponse 实例,失败时为数组或者你指定的 API 返回格式
    17. // 保存小程序码到文件
    18. if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
    19. $filename = $response->save('/path/to/directory');
    20. }
    21. // 或
    22. if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
    23. $filename = $response->saveAs('/path/to/directory', 'appcode.png');
    24. }

    接口B:适用于需要的码数量极多,或仅临时使用的业务场景

    API:

    1. $app->app_code->getUnlimit(string $scene, array $optional = []);

    其中 $scene 必填,$optinal 与 get 方法一致,多一个 page 参数。

    示例代码:

    1. $response = $app->app_code->getUnlimit('scene-value', [
    2. 'page' => 'path/to/page',
    3. 'width' => 600,
    4. ]);
    5. // $response 成功时为 EasyWeChat\Kernel\Http\StreamResponse 实例,失败为数组或你指定的 API 返回类型
    6. // 保存小程序码到文件
    7. if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
    8. $filename = $response->save('/path/to/directory');
    9. }
    10. // 或
    11. if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
    12. $filename = $response->saveAs('/path/to/directory', 'appcode.png');
    13. }

    获取小程序二维码

    API:

    1. $app->app_code->getQrCode(string $path, int $width = null);

    其中 $path 必填,其余参数可留空。

    示例代码:

    1. $response = $app->app_code->getQrCode('/path/to/page');
    2. // $response 成功时为 EasyWeChat\Kernel\Http\StreamResponse 实例,失败为数组或你指定的 API 返回类型
    3. // 保存小程序码到文件
    4. if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
    5. $filename = $response->save('/path/to/directory');
    6. }
    7. // 或
    8. if ($response instanceof \EasyWeChat\Kernel\Http\StreamResponse) {
    9. $filename = $response->saveAs('/path/to/directory', 'appcode.png');
    10. }

    #