欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信支付java版本之获取Access_token

程序员文章站 2024-03-13 10:43:45
access_token是公众号的全局唯一票据,公众号调用各接口时都需使用access_token。开发者需要进行妥善保存。access_token的存储至少要保留512个...

access_token是公众号的全局唯一票据,公众号调用各接口时都需使用access_token。开发者需要进行妥善保存。access_token的存储至少要保留512个字符空间。access_token的有效期目前为2个小时,需定时刷新,重复获取将导致上次获取的access_token失效。 

公众平台的api调用所需的access_token的使用及生成方式说明:

1、为了保密appsecrect,第三方需要一个access_token获取和刷新的中控服务器。而其他业务逻辑服务器所使用的access_token均来自于该中控服务器,不应该各自去刷新,否则会造成access_token覆盖而影响业务;
2、目前access_token的有效期通过返回的expire_in来传达,目前是7200秒之内的值。中控服务器需要根据这个有效时间提前去刷新新access_token。在刷新过程中,中控服务器对外输出的依然是老access_token,此时公众平台后台会保证在刷新短时间内,新老access_token都可用,这保证了第三方业务的平滑过渡;
3、access_token的有效时间可能会在未来有调整,所以中控服务器不仅需要内部定时主动刷新,还需要提供被动刷新access_token的接口,这样便于业务服务器在api调用获知access_token已超时的情况下,可以触发access_token的刷新流程。 

如果第三方不使用中控服务器,而是选择各个业务逻辑点各自去刷新access_token,那么就可能会产生冲突,导致服务不稳定。 

公众号可以使用appid和appsecret调用本接口来获取access_token。appid和appsecret可在微信公众平台官网-开发者中心页中获得(需要已经成为开发者,且帐号没有异常状态)。注意调用所有微信接口时均需使用https协议。

接口调用请求说明
http请求方式: get
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=appid&secret=appsecret 

参数说明

微信支付java版本之获取Access_token 

返回说明

 微信支付java版本之获取Access_token

正常情况下,微信会返回下述json数据包给公众号:
 {"access_token":"access_token","expires_in":7200} 

错误时微信会返回错误码等信息,json数据包示例如下(该示例为appid无效错误):
{"errcode":40013,"errmsg":"invalid appid"}

2.代码实现

appid,appsecret在公众账号中可查询

package com.zhrd.bussinss.platform.scheduled;

import java.io.inputstream;
import java.net.httpurlconnection;
import java.net.url;

import org.springframework.beans.factory.annotation.autowired;
import org.springframework.context.annotation.lazy;
import org.springframework.scheduling.annotation.scheduled;
import org.springframework.stereotype.component;

import com.zhrd.bussinss.platform.constants.weixinid;
import com.zhrd.bussinss.platform.service.accesstokenservice;

import net.sf.json.jsonobject;

@component
@lazy(false)
public class getweixinaccesstokenscheduled {
 
 /**

   * 获得access_token

   *

   * @title: getaccess_token

   * @description: 获得access_token

   * @param @return 设定文件

   * @return string 返回类型

   * @throws

   */
 
 @autowired
 private accesstokenservice accesstokenserviceimpl;
 
 
 @scheduled(fixedratestring = "${weixin.token.fixedrate.in.milliseconds}"
  , initialdelaystring = "${weixin.token.initialdelay.in.milliseconds}")
  public void getaccesstoken() {
  
  system.out.println("====================获取token开始==============================");

    string url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid="

        + weixinid.appid+ "&secret=" + weixinid.appsecret;

    string accesstoken = null;
    string expiresin = null;

    try {

      url urlget = new url(url);

      httpurlconnection http = (httpurlconnection) urlget.openconnection();

      http.setrequestmethod("get"); // 必须是get方式请求

      http.setrequestproperty("content-type",

          "application/x-www-form-urlencoded");

      http.setdooutput(true);

      http.setdoinput(true);

      http.connect();

      inputstream is = http.getinputstream();

      int size = is.available();

      byte[] jsonbytes = new byte[size];

      is.read(jsonbytes);

      string message = new string(jsonbytes, "utf-8");

      jsonobject demojson = jsonobject.fromobject(message);

      accesstoken = demojson.getstring("access_token");
      expiresin = demojson.getstring("expires_in");

      system.out.println("accesstoken===="+accesstoken);
      system.out.println("expiresin==="+expiresin);
      accesstokenserviceimpl.addtoken(accesstoken,expiresin);
      system.out.println("====================获取token结束==============================");

      is.close();

    } catch (exception e) {

      e.printstacktrace();

    }

//    return accesstoken;

  }
 
}

 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。