用于PHP的Google Service Apis列出了所有订阅而不是get

时间:2015-04-07 04:41:13

标签: php google-api-client subscriptions

我在尝试查询Google订阅时遇到此错误(每月续订):

Error calling GET https://www.googleapis.com/androidpublisher/v2/applications/com.iwitness.android/purchases/subscriptions/monthly_sub_2.99/tokens/12999763169054705758.1378906769207703: (400) Invalid Value

我正在使用适用于PHP的Google服务API,并希望拥有一个针对订阅进行验证的cronjob,以便禁用/启用/延长到期日。

我想知道我们是否有任何其他api可以列出所有订阅而不是这样做:

$service = new Google_Service_AndroidPublisher($this->googleClient);
$subs = $service
    ->purchases_subscriptions
    ->get(
        'com.iwitness.android',
        'monthly_sub_2.99',
        '12999763169054705758.1378906769207703'
    );
...

或者,有没有办法摆脱"(400)无效的价值"错误?我测试了Android发布商v1 / v2并遇到了同样的问题。 请帮忙。

0 个答案:

没有答案