Chrome Webstore Extension In App Purchase INTERNAL_SERVER_ERROR

前端 未结 1 1514
太阳男子
太阳男子 2021-01-23 18:40

Partial success with the Chrome InApp purchase flow within a Chrome extension. I have included the buy.js file and implemented the flow as listed on the Chrome walkthrough here:

相关标签:
1条回答
  • 2021-01-23 18:59

    I have had successful payments even from other random computers. You may have to check follow for the potential fix:

    1. Make sure In-app Items are enabled for all, not just yourself or test users

    2. Make sure to use 'parameters': {env: "prod"}, wherever you are making "google.payments.inapp.*" calls

    3. Make sure users are Signed-in their browsers in order to get items, licenses and make final purchases successfully

    4. Make sure to use the originalId(nmmhkkegccagdldgiimedpiccmgmieda) while calling chrome.runtime.connect() in buy.js, if not then it is the place where it triggers INTERNAL_SERVER_ERROR.

    Hope it helps.

    0 讨论(0)
提交回复
热议问题