我尝试实现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和签名?
谢谢,