我尝试实现 android 许可证的服务器端验证。我使用 php 代码:http ://code.google.com/p/android-market-license-verification/
在文件 sample/verify.php 中,我有两行要完成:
$responseData = '';
$signature = '';
我在 google LVL 中看到有一个名为 verify 的函数具有这些参数。
public void verify(PublicKey publicKey, int responseCode, String signedData, String signature);
但我不知道如何获取数据以在我的网络服务器上发送它们
我在哪里可以获得 ResponseData 和签名?
谢谢,