简体   繁体   English

Google API取得购买inap的状态返回“未找到”

[英]Google API get status of purchase inap is returning “Not found”

I refered google play android api to check the purchase and consumption status of an in-app item. 我引用了Google Play Android API来检查应用内商品的购买和消费状态。 but return the error as below: 但是返回如下错误:

C:\\Program Files\\VertrigoServ\\www\\inapp\\index.php:74:null Not Found

I can not understand why he does not return me not a valid json, it just returns me a text saying "Not Found" 我不明白为什么他不向我返回无效的json,而只是向我返回一条文字“找不到”

I use the function to getToken() , she works perfect... but the function getStatusInapp($pProductIdStr, $lAccessToken) doesn't work 我使用函数getToken() ,她工作得很好...但是函数getStatusInapp($pProductIdStr, $lAccessToken)不起作用

What I doing wrong? 我做错了什么?

function getToken(){

GLOBAL $lPackageNameStr; // Name of package Name (com.example.app)
GLOBAL $client_id; // my client id from google
GLOBAL $client_secret; // my client secret from google
GLOBAL $refresh_token; // the refresh token
GLOBAL $pReceiptStr; // token of inap purchase

$url ="https://accounts.google.com/o/oauth2/token";
$fields = array(
   "client_id"=>$client_id,
   "client_secret"=>$client_secret,
   "refresh_token"=>$refresh_token,
   "grant_type"=>"refresh_token");

$ch = curl_init($url);
//set the url, number of POST vars, POST data
curl_setopt($ch, CURLOPT_POST,count($fields));
curl_setopt($ch, CURLOPT_POSTFIELDS, $fields);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
//execute post
$lResponse_json = (curl_exec($ch));
$lAccessToken = json_decode($lResponse_json)->{'access_token'};
//close connection
curl_close($ch);
return $lAccessToken;
}

function getStatusInapp($pProductIdStr, $lAccessToken){

GLOBAL $lPackageNameStr; // Name of package Name (com.example.app)
GLOBAL $client_id; // my client id from google
GLOBAL $client_secret; // my client secret from google
GLOBAL $refresh_token; // the refresh token
GLOBAL $pReceiptStr; // token of inaap purchase

/*
# What is the correct way to sku?

$pProductIdStr = "teste_01";
------------ or --------------
$pProductIdStr = "com.example.app.teste_01";
------------ or --------------
$pProductIdStr = "inap:com.example.app:teste_01";

# On Google Play Developer Console the sku is:> teste_01


*/

$lURLStr =  ("https://www.googleapis.com/androidpublisher/v2/applications/$lPackageNameStr/purchases/$pProductIdStr/purchases/$pReceiptStr");

$curl = curl_init($lURLStr);

curl_setopt($curl, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); 
$curlheader[0] = "Authorization: Bearer " . $lAccessToken;
curl_setopt($curl, CURLOPT_HTTPHEADER, $curlheader);

$json_response = curl_exec($curl);
curl_close($curl);

//echo $json_response;
$responseObj = json_decode($json_response,true);
var_dump($responseObj);
echo $json_response;
}

/*
| Execute...
*/

getStatusInapp($pProductIdStr, getToken());

Looks like you have the API endpoint path wrong. 看起来您的API端点路径错误。 The Purchases.products: get documentation describes the url as: Purchases.products:获取文档将网址描述为:

https://www.googleapis.com/androidpublisher/v2/applications/ packageName /purchases/products/ productId /tokens/ token https://www.googleapis.com/androidpublisher/v2/applications/ packageName / purchases / products / productId / tokens / 令牌

Change your $lURLStr to: 将您的$lURLStr更改为:

"https://www.googleapis.com/androidpublisher/v2/applications/$lPackageNameStr/purchases/products/$pProductIdStr/tokens/$pReceiptStr"

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM