I'm having problems with coding payments.
This is a web game and here's how I would like the payments to work.
You got to a site and click a button(buy). You are redirected to a site that will send the information of a purchase to the server adding the bought item to your account. Before that happens we have a WebViewClient that checks all the urls. If he find an url that is meant for purchases he will send the purchase request. Now if we will get a message back from android market that it was successful he will proceed with the redirect.
I'm quite new to this and just can't grasp the concept of these payments. I wrote my code using the dungeon example. I tried to adjust it to my needs. I would be grateful is someone could point me in the right direction. Atm I'm trying to figure out how to get the response of a successful purchase. Assuming that the rest of my code is ok it should be working (I hope).
I have in my project files BillingReciver.java, BillingSerivce.java, PurchaseObserver.java, ResponseHandler.java, Consts.java and Security.java that were in the example. If need be I can provice the code of these but there is a lot of it, so I'm hoping someone who already seen the example will be able to help.
After some research and consulting with some people I found what I need:
/**
* This is called when Android Market sends information about a purchase state
* change. The signedData parameter is a plaintext JSON string that is
* signed by the server with the developer's private key. The signature
* for the signed data is passed in the signature parameter.
* @param context the context
* @param signedData the (unencrypted) JSON string
* @param signature the signature for the signedData
*/
private void purchaseStateChanged(Context context, String signedData, String signature) {
Intent intent = new Intent(Consts.ACTION_PURCHASE_STATE_CHANGED);
intent.setClass(context, BillingService.class);
intent.putExtra(Consts.INAPP_SIGNED_DATA, signedData);
intent.putExtra(Consts.INAPP_SIGNATURE, signature);
context.startService(intent);
}
I need to get the data out of the JSON string that my app will get from android market. Anyone have an idea how to do that?