资源描述:
《基于python的游戏app充值api调用代码实例》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、基于Python的游戏app充值api调用代码实例代码描述:基于Python的游戏app充值api调用代码实例代码平台:聚合数据#!/usr/bin/python#-*-coding:utf-8-*-importjson,urllibfromurllibimporturlencode #----------------------------------#游戏充值调用示例代码-聚合数据#在线接口文档:http://www.juhe.cn/docs/88#---------------------------------- defmain(): #配置您申请的APPKey ap
2、pkey="*********************" #1.商品小类列表 request1(appkey,"GET") #2.商品信息 request2(appkey,"GET") #3.商品价格查询 request3(appkey,"GET") #4.游戏直充区服查询 request4(appkey,"GET") #5.游戏直充 request5(appkey,"GET") #6.订单状态查询 request6(appkey,"GET") #商品小类列表defrequest1(appkey,m="
3、GET"): url="http://op.juhe.cn/ofpay/game/cardlist" params={ "key":appkey,#应用APPKEY(应用详细页查询) } params=urlencode(params) ifm=="GET": f=urllib.urlopen("%s?%s"%(url,params)) else: f=urllib.urlopen(url,params) content=f.read() res=json.loads(content) if
4、res: error_code=res["error_code"] iferror_code==0: #成功请求 printres["result"] else: print"%s:%s"%(res["error_code"],res["reason"]) else: print"requestapierror" #商品信息defrequest2(appkey,m="GET"): url="http://op.juhe.cn/ofpay/game/cardi
5、nfo" params={ "cardid":"",#对应接口1的cardid "key":appkey,#应用APPKEY(应用详细页查询) } params=urlencode(params) ifm=="GET": f=urllib.urlopen("%s?%s"%(url,params)) else: f=urllib.urlopen(url,params) content=f.read() res=json.loads(content) ifres: erro
6、r_code=res["error_code"] iferror_code==0: #成功请求 printres["result"] else: print"%s:%s"%(res["error_code"],res["reason"]) else: print"requestapierror" #商品价格查询defrequest3(appkey,m="GET"): url="http://op.juhe.cn/ofpay/game/cardprice" param
7、s={ "cardid":"",#对应接口2的cardid "key":appkey,#应用APPKEY(应用详细页查询) } params=urlencode(params) ifm=="GET": f=urllib.urlopen("%s?%s"%(url,params)) else: f=urllib.urlopen(url,para