parent
c433662fe1
commit
c77c01e099
5 changed files with 50 additions and 14 deletions
@ -1,17 +1,29 @@ |
|||||||
package com.lq.wechat.util.token; |
package com.lq.wechat.util.token; |
||||||
|
|
||||||
|
import com.lq.BaseTest; |
||||||
|
import com.lq.entity.WechatInfo; |
||||||
import org.junit.Test; |
import org.junit.Test; |
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
|
||||||
public class AccessTokenUtilTest { |
public class AccessTokenUtilTest extends BaseTest { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private AccessTokenUtil accessTokenUtil; |
||||||
|
|
||||||
@Test |
@Test |
||||||
public void getAccessToken() { |
public void getAccessToken() { |
||||||
|
String result = AccessTokenUtil.getAccessToken("wx76ca7130852c4baa","d87125562b8e60618bc7b3120dfe3583"); |
||||||
String result = AccessTokenUtil.getAccessToken("wx759184412abd6599","3197674021ad999f87273ed79a752212"); |
|
||||||
System.out.println(result); |
System.out.println(result); |
||||||
} |
} |
||||||
|
|
||||||
@Test |
@Test |
||||||
public void getAccessToken1() { |
public void getAccessToken1() { |
||||||
|
WechatInfo wechatInfo = new WechatInfo(); |
||||||
|
wechatInfo.setAppId("wx76ca7130852c4baa"); |
||||||
|
wechatInfo.setAppSecpet("d87125562b8e60618bc7b3120dfe3583"); |
||||||
|
wechatInfo.setWechatOpenId("gh_50ba8d7a5efc"); |
||||||
|
System.out.println("================================="); |
||||||
|
String token = accessTokenUtil.getAccessToken(wechatInfo); |
||||||
|
System.out.println("token:"+token); |
||||||
} |
} |
||||||
} |
} |
Loading…
Reference in new issue