Google api AndroidPublisher InAppProduct更新返回内部服务器错误500

时间:2015-10-27 13:37:11

标签: java google-api google-api-java-client

使用AndroidPublisher在Java中进行开发时,我尝试更新InAppProduct对象。 首先,我使用了对象:

AndroidPublisher.Inappproducts.Get get = 
inappproducts.get(packageName, skuName);
InAppProduct inAppProduct = get.execute();
然后我按照我的逻辑操纵它 并尝试使用以下方法更新对象:

AndroidPublisher.Inappproducts.Update update = 
inappproducts.update(packageName,skuName,inAppProduct);

update.execute();

我收到以下错误消息:

com.google.api.client.googleapis.json.GoogleJsonResponseException: 
500 Internal Server Error
{
"code" : 500,
"message" : null
}

任何想法为什么会发生这种情况?我该如何解决呢?

0 个答案:

没有答案