All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.aqiu202.wechat.wxcodec.service.DecryptService Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package com.github.aqiu202.wechat.wxcodec.service;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.ObjectNode;

public interface DecryptService {

    JsonNode decrypt(String encryptedData, String sessionKey, String iv);

    JsonNode session(String code);

    ObjectNode decodeUser(String encryptedData, String iv, String code);

    String decodeRefundInfo(String content, String apiKey);

    JsonNode accessToken(String code);

    JsonNode userInfo(String accessToken, String openid);

    JsonNode accessToken();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy