按需授权

Contents
[ ]
  1. 创建Metered类的实例。

  2. 将您的公钥和私钥传递给setMeteredKey方法。

  3. 进行一些处理(执行任务)。

  4. 调用Metered类的getConsumptionQuantity方法。

    您应该看到您迄今为止消耗的API请求的数量/金额。

以下PHP代码向您展示了如何设置按需公钥和私钥:

  $metered = new Metered();
  try {
    // 访问setMeteredKey属性并将公钥和私钥作为参数传递
    $metered->setMeteredKey("<有效的公钥>", "<有效的私钥>");
    // 在访问API之前获取消耗数量值
    $quantityOld = Metered->getConsumptionQuantity();
    echo("消耗数量" . $quantityOld);
    // 在访问API之后获取消耗数量值
    $quantity = Metered->getConsumptionQuantity();
    echo("消耗数量" . $quantity);
  } catch (JavaException $ex) {
    $ex->printStackTrace();
  }