engageso/engage-php 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

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

engageso/engage-php

Composer 安装命令:

composer require engageso/engage-php

包简介

A PHP SDK for Engage (http://engage.so/)

README 文档

README

The Engage PHP SDK lets you capture user attributes and events on your site. You can later use this on Engage to create user segments for analytics, broadcast messages and automation messages.

Getting Started

Create an Engage account to get your API key

Installation

composer require "engageso/engage-php"

Configuration

Initialise the SDK with your public and private key. Your keys are available in the settings page of your Engage dashboard.

$engage = new \Engage\EngageClient($_SERVER['pub_key'], $_SERVER['pri_key']);

Identifying users

You only need a unique identifier that represents the user on your platform to track their events and attributes on Engage. To correlate a proper profile to these tracked attributes and events, you can send the unique identifier and other properties to Engage. You only need to do this once per user, probably at user signup.

$engage->users->identify([
  'id' => 'u13345',
  'email' => 'dan@mail.app',
  'created_at' => '2020-05-30T09:30:10Z'
]);

id represents the unique identifier for the user on your platform. It is the only required parameter. You can send any other attribute you want e.g. age, plan. Here are the standard ones we use internally on the user profile:

  • first_name
  • last_name
  • email
  • is_account (if the user is an account or customer)
  • number (with international dialing code without the +)
  • created_at (represents when the user registered on your platform. If not added, Engage sets it to the current timestamp.)

To identify a user as an Account:

$engage->users->identify([
  'id' => 'u13345',
  'is_account' => true,
  'email' => 'hello@mail.app',
  'created_at' => '2020-05-30T09:30:10Z'
]);

To convert a Customer to an Account:

$engage->users->convertToAccount('u13345');

To convert an Account to a Customer:

$engage->users->convertToCustomer('u15645');

Update/add user attributes

If you need to add new attributes or update an existing attribute, you can use the addAttribute method.

$engage->users->addAttribute($userId, [
  'first_name' => 'Dan',
  'plan' => 'Premium'
]);

(You can also use identify to update or add new attributes.)

Tracking user events and actions

You can track user events and actions in a couple of ways.

Tracking an event with no value:

$engage->users->track($userId, 'Delinquent');

Tracking an event with a value:

$engage->users->track($userId, [
  'event' => 'New badge',
  'value' => 'gold',
  'timestamp' => '2020-05-30T09:30:10Z'
]);

event is the event you want to track. value is the value of the event. This can be a string, number or boolean. There is an optional timestamp parameter. If not included, Engage uses the current timestamp. The timestamp value must be a valid datetime string.

If you need to track more properties with the event, you can track it this way:

$engage->users->track($userId, [
  'event' => 'Add to cart',
  'properties' => [
    'product' => 'T123',
    'currency' => 'USD',
    'amount' => 12.99
  ]
]);

Add a Customer to an Account

$engage->users->addToAccount($userId, $accountId, $role);

Role is optional.

Update Account role

$engage->users->changeAccountRole($userId, $accountId, $newRole);

Remove Customer from Account

$engage->users->removeFromAccount($userId, $accountId);

License

MIT

engageso/engage-php 适用场景与选型建议

engageso/engage-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 3.79k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2021 年 04 月 02 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 engageso/engage-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 engageso/engage-php 我们能提供哪些服务?
定制开发 / 二次开发

基于 engageso/engage-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

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

GitHub 信息

  • Stars: 3
  • Watchers: 1
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2021-04-02