|
|
@@ -469,9 +469,10 @@ public class TtOpenMaServiceImpl extends TtMaServiceImpl implements TtOpenMaServ |
|
|
|
* @throws WxErrorException |
|
|
|
*/ |
|
|
|
@Override |
|
|
|
public WxOpenResult undoCodeAudit() throws WxErrorException { |
|
|
|
String response = get(API_UNDO_CODE_AUDIT, null); |
|
|
|
return WxMaGsonBuilder.create().fromJson(response, WxOpenResult.class); |
|
|
|
public TtOpenResult undoCodeAudit() throws WxErrorException { |
|
|
|
String uri = API_UNDO_CODE_AUDIT + "?component_appid=" + ttOpenComponentService.getWxOpenConfigStorage().getComponentAppId(); |
|
|
|
String response = ttOpenComponentService.postByAppAccessToken(appId,uri,null,"authorizer_access_token"); |
|
|
|
return TtOpenGsonBuilder.create().fromJson(response, TtOpenResult.class); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|