使用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
}
任何想法为什么会发生这种情况?我该如何解决呢?