我想问一个关于IAB接口无效购买接口https://developers.google.com/android-publisher/api-ref/purchases/voidedpurchases/list响应的问题:
{
"error": {
"code": 403,
"errors": [
{
"domain": "androidpublisher",
"message": "The current user has insufficient permissions to perform the requested operation.",
"reason": "forbidden"
}
],
"message": "The current user has insufficient permissions to perform the requested operation."
}
}
请给我一些使用此接口的建议。非常感谢。
发布于 2020-09-01 13:40:59
也许已经很晚了,但也许能帮助到别人
我想你把错误的query parameters传给API了。
正如文档所说,最常见的错误是关于startTime
和endTime
的时间戳:
自Epoch以来的
时间(毫秒
检查您的时间戳是否以毫秒而不是秒为单位
https://stackoverflow.com/questions/62931171
复制相似问题