IAP.completeProductGrant
功能说明
向应用传达商品发放处理已完成的消息。用于告知已支付订单的商品发放已正常结束。
参数为
{ params: { orderId } }保持嵌套结构。
Toss App Android/iOS 5.233.0 可在以上版本使用。若在不支持的版本中调用则 UNSUPPORTED_APP_VERSION 会发生错误。
类型
IAP.completeProductGrant(args: { params: { orderId: string } }): Promise<boolean>;Params
{
params: {
orderId: string;
}
}Response
发放完成与否 boolean作为……返回。
错误
错误代码是 catch 到的错误的 error.code 值。
代码
说明
UNSUPPORTED_APP_VERSION
如果当前运行的 Toss App 版本不支持此功能,调用后会立即发生。 IAP.completeProductGrant.isSupported()可通过它提前确认,发生时 error.message请向用户显示(更新提示文案)。
示例代码
这有帮助吗?