最近因为项目需要加入googleplay的内购功能~所以网上找了很多资料,这里做个记号~

官方的内购支付接入文档:https://developer.android.com/training/in-app-billing/index.html

网上别人的资料:http://zengrong.net/post/1801.htm

下面用到的所有代码都来自Google官方给的Demo,大概路径是:<android_sdk>/extras/google/play_billing/


Google Play开发者后台需要的配置

1.测试时需要把app正式签名后上传到googlepay的后台

2.网上说测试需要把账号添加到后台而且得用信用卡来测试(这个本人没测过)

3.需要在google play后台给对应的apk添加产品

关于产品的说明:

a.产品分为不受管理的商品(消耗品,比如游戏中的金币)和受管理的商品(一次性购买即属于本账号,比如某些游戏需要玩家付费后才可以使用完整版本)

b.受管理类产品需要考虑如果玩家用同一个支付账号到别的设备完同一款游戏,这时需要考虑把那个设备也设置成已支付

c.产品的id是唯一的字符串定义,比如com.engine.produce01

d.后台添加产品后需要激活

代码部分(使用的是version3 api)

IabHelper类

初始化方法

mHelper=new IabHelper(this, base64EncodedPublicKey);

这里的base64EncodedPublicKey是googleplay后台的发布产品的时候生成提供的

        mHelper.startSetup(new IabHelper.OnIabSetupFinishedListener() {public void onIabSetupFinished(IabResult result) {Log.d(TAG, "Setup finished.");if (!result.isSuccess()) {// Oh noes, there was a problem.complain("Problem setting up in-app billing: " + result);return;}// Hooray, IAB is fully set up. Now, let's get an inventory of stuff we own.Log.d(TAG, "Setup successful. Querying inventory.");mHelper.queryInventoryAsync(mGotInventoryListener);}});

startSetup 的操作是检查是否有权限和连接到Google Billing service是否成功;这里回调的操作是如果成功,调用queryInventoryAsync查看产品id是否可以使用;

查询完成后会调用IabHelper.QueryInventoryFinishedListener 这个回调接口进行通知,在这个接口中可以获取商品的详细信息SkuDetails和Purchase信息。

点击购买按钮,需要调用的支付方法

        String payload = ""; mHelper.launchPurchaseFlow(Activity act, String sku, String itemType, int requestCode, OnIabPurchaseFinishedListener listener, String payload);
    boolean verifyDeveloperPayload(Purchase p) {String payload = p.getDeveloperPayload();/** TODO: verify that the developer payload of the purchase is correct. It will be* the same one that you sent when initiating the purchase.* * WARNING: Locally generating a random string when starting a purchase and * verifying it here might seem like a good approach, but this will fail in the * case where the user purchases an item on one device and then uses your app on * a different device, because on the other device you will not have access to the* random string you originally generated.** So a good developer payload has these characteristics:*  * 1. If two different users purchase an item, the payload is different between them,*    so that one user's purchase can't be replayed to another user.* * 2. The payload must be such that you can verify it even when the app wasn't the*    one who initiated the purchase flow (so that items purchased by the user on *    one device work on other devices owned by the user).* * Using your own server to store and verify developer payloads across app* installations is recommended.*/return true;}

verifyDeveloperPayload这个方法是在支付完成的时候在回调里头去验证用的,关于payload的生产,看上面官方给的demo的注释,大概理解了下:

1.不同的玩家所生成的payload需要不一样

2.即使玩家在不同设备上初始化payload,也要可以通过~

大概是这个意思(如果翻译有问题~砸砖吧~)

下面是支付方法回调的监听:

   IabHelper.OnIabPurchaseFinishedListener mPurchaseFinishedListener = new IabHelper.OnIabPurchaseFinishedListener() {public void onIabPurchaseFinished(IabResult result, Purchase purchase) {Log.d(TAG, "Purchase finished: " + result + ", purchase: " + purchase);if (result.isFailure()) {complain("Error purchasing: " + result);setWaitScreen(false);return;}if (!verifyDeveloperPayload(purchase)) {complain("Error purchasing. Authenticity verification failed.");setWaitScreen(false);return;}Log.d(TAG, "Purchase successful.");if (purchase.getSku().equals(SKU_GAS)) {// bought 1/4 tank of gas. So consume it.Log.d(TAG, "Purchase is gas. Starting gas consumption.");//購買成功,調用消耗產品mHelper.consumeAsync(purchase, mConsumeFinishedListener);}else if (purchase.getSku().equals(SKU_PREMIUM)) {// bought the premium upgrade!Log.d(TAG, "Purchase is premium upgrade. Congratulating user.");alert("Thank you for upgrading to premium!");mIsPremium = true;updateUi();setWaitScreen(false);}else if (purchase.getSku().equals(SKU_INFINITE_GAS)) {// bought the infinite gas subscriptionLog.d(TAG, "Infinite gas subscription purchased.");alert("Thank you for subscribing to infinite gas!");mSubscribedToInfiniteGas = true;mTank = TANK_MAX;updateUi();setWaitScreen(false);}}};

上面有中文注释的地方调用了 mHelper.consumeAsync这个方法,这里应该是只有非管理类的产品才需要调用的方法;相当于在购买成功后调用消耗(可以理解为消耗一个道具)

在IabHelper.OnConsumeFinishedListener的回调用于处理成功调用成功支付的逻辑(这里可能还需要一步去调用远程服务器验证)



GooglePlay内购In-app Billing 总结~相关推荐

  1. GooglePlay内购In-app SDK接入

    文章转载自:https://gitee.com/tjbaobao/GoogleBuillingUtil/blob/master/GoogleBillingUtil.java README.md: 基于 ...

  2. GooglePlay内购接入错误Google Play In-app Billing API version is less than 3

    接入谷歌内购时,代码部分接入好了,于是打算开始测试,但是打开应用后初始化时一直提示错误:Google Play In-app Billing API version is less than 3.看名 ...

  3. Unity接入GooglePlay内购V4(源生Android方式)

    Unity接GooglePlay In-App Billing坑还是蛮多的,各种坑. 接的方式目前来看有三种: 采用Unity IAP插件,开启Unity的IAP Service 采用Android源 ...

  4. GooglePlay内购服务器验单

    相关后台配置见另外一篇文章 https://blog.csdn.net/wuyutaoktm/article/details/122450878 package mainimport ("c ...

  5. 解决某APP游戏内购

    对某APP内的道具购买进行破解 学习笔记三:对一款存在道具.关卡内购的APP进行破解使其道具.关卡购买免费化 一.将该未进行处理的APP通过模拟器安装使用 通过安装后的使用(购买其中的道具)发现该AP ...

  6. 苹果app商品定价_iOS 开发_2017苹果内购价格表

    [作者前言]:13年入圈,分享些本人工作中遇到的点点滴滴那些事儿,17年刚开始写博客,高手勿喷!以分享交流为主,欢迎各路豪杰点评改进! 1.应用场景: 使用苹果内购的APP/游戏 2.实现目标: 了解 ...

  7. iOS快速上手应用内购(IAP)附Demo

    前言:最近项目中接触到内购,本文主要介绍如何开发应用内购(In App Purchase),有一些是根据实际需求做的考虑,有不同的见解欢迎留言指教~本文demo:https://github.com/ ...

  8. iOS开发 IAP苹果内购

    为什么80%的码农都做不了架构师?>>>    1.概念介绍 <1>苹果内购: App内购买是指在苹果的 App Store 中购买应用程序的方式. 在玩一些游戏类应用软 ...

  9. ItunesConnect:苹果内购项目元数据缺失

    问题描述: 添加内购的App审核时被拒,原因为:ios内购 元数据丢失 问题原因: 审核信息里的 "审核屏幕快照" 和 "备注" 要填写,不然就失败的. 示例图 ...

最新文章

  1. MySQL案例-多源复制引起的内存泄漏
  2. 安装VMware Workstation提示the msi failed的解决办法
  3. C#中显/隐式实现接口及其访问方法
  4. Pandas中兼并数组和字典功能的Series 2013-03-24 11:24:00 分类: Python/Ruby In [2]: # 这段代码用于并排显示多个Series对象 from it
  5. Spring Boot 集成AOP
  6. 如何通过OpenFace实现人脸识别框架
  7. 遍历线索化二叉树+图解
  8. 75 jsp基础语法汇总
  9. Docker中Maven私服的搭建
  10. 如何利用Pre.im分发iOS测试包
  11. Exadata Griddisk Can't be auto added
  12. 防火墙双机热备配置实例(二)
  13. 普通IO口红外线接收(不用外部中断)
  14. 苦才是人生的经典美言
  15. 企业u盘系统服务器,服务器u盘装系统
  16. unable to resolve host address
  17. Android将APP做成一个launcher
  18. 熵值法原理、应用及其Python实现
  19. 帅某---考研---高数笔记---汤家凤---第十章向量代数与空间几何
  20. html图片左侧留白,HTML+CSS布局img图片元素出现空白的问题

热门文章

  1. 域名注册商评测对比:Namesilo vs Godaddy
  2. go语言使用GoConvey框架进行测试
  3. 【论文阅读】Query Graph Generation for Answering Multi-hop Complex Questions from Knowledge Bases
  4. 【实践经验】Latex 使用PPT导出的图片的渲染灰边问题解决
  5. cmd如何实现快速粘贴复制
  6. Java编译过程、JIT编译详解、类加载过程
  7. 【知识学习】matlab入门
  8. #保姆级教学 「图像评价指标」(MSE、LPIPS)——理论+代码
  9. DNS解析过程及欺骗原理
  10. Adobe Premiere