开发者社区> 问答> 正文

#支付宝 如何设置app_auth_token

如何设置app_auth_token

展开
收起
保持可爱mmm 2020-05-07 15:48:15 3357 0
1 条回答
写回答
取消 提交回答
  • 参数:app_auth_token。

    类型:String(40)。

    是否必填:否。

    使用场景:商户对开发者进行应用授权后,开发者可以帮助商户完成相应的业务逻辑,例如服务商代替商户发起当面付的收单请求。

    不同开发语言设置app_auth_token的方式不同,具体请查看对应示例。

    1、Java开发语言

    //(1)execute(如当面付接口): response = alipayClient.execute(request,null,"app_auth_token参数值"); request.putOtherTextParam("app_auth_token", "app_auth_token参数值"); //(2)pageExecute(如电脑网站支付、手机网站支付): request.putOtherTextParam("app_auth_token", "app_auth_token参数值"); //(3)sdkexecute(如app支付): request.putOtherTextParam("app_auth_token", "app_auth_token参数值");

    2、PHP开发语言

    //(1)execute(如当面付接口): $result = $aop->execute ($request,null,$app_auth_token); //(2)pageExecute(如电脑网站支付、手机网站支付): $result = $aop->pageExecute($request,null,$app_auth_token); //(3)sdkexecute(如app支付): $result = $aop->sdkExecute($request,$app_auth_token);

    3、.net开发语言

    //(1)execute(如当面付接口): response=client.Execute(request, null, appAuthToken); //(2)pageExecute(如电脑网站支付、手机网站支付): response=client.pageExecute(request,null,appAuthToken,string reqMethod); //ps:string reqMethod可填写成post或者GET(大写)对应着生成的请求字符串是以form表单格式输出还是请求字符串数据输出。不设置该参数,为空默认传递post,生成的是以form表单的格式数据输出 //(3)sdkExecute(如app支付): response =client.sdkExecute(request,appAuthToken);

    4、python开发语言

    在udf_params参数内传递auth_token、app_auth_token等其他公共参数,需要引入from alipay.aop.api.constant.ParamConstants import * 方法

    udf_params = dict() #传递app_auth_token方法 udf_params[P_APP_AUTH_TOKEN] = "app_auth_token参数值" #传递auth_token方法 udf_params[P_AUTH_TOKEN] = "auth_token参数值" request.udf_params = udf_params

    5、node.js开发语言

    //(1)使用formData方式传递生成请求参数(如电脑网站支付、手机网站支付、app支付) formData.addField('app_auth_token', 'app_auth_token参数值'); //(2)不使用formData方式传递,直接提交获取响应数据(如当面付接口) const result =alipaySdk.exec('alipay.trade.precreate',{ //传递app_auth_token方法 appAuthToken:"app_auth_token参数值", bizContent: {}, }

    2020-05-07 15:48:22
    赞同 展开评论 打赏
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
女性移动App安全攻防战 立即下载
汇聚云计算的生态核能——云市场,云上APP Store 立即下载
千万级用户直播App——服务端架构设计和思考 立即下载

相关实验场景

更多