极光推送报错6027
发表于|更新于
|浏览量:
不能因为贫穷,便辱骂祖宗,把大地母亲卖去。——泰戈尔
极光推送响应码6027:
这是因为
| 别名绑定的设备数超过限制 | 3.3.2 版本新增的错误码;极光于 2020/03/10 对「别名设置」的上限进行限制,最多允许绑定 10 个设备,如需更高上限,请联系商务 |
|---|
我们可以手动解绑,java的sdk是如下cn.jpush.api.JPushClient#deleteAlias:
1 | jpushClient.deleteAlias("truetime_9052710354240385174", null); |
即可解绑
相关推荐
2021-08-10
mybatis-plus随机查询工具类(二)
当真理还正在穿鞋的时候,谎言就能走遍半个世界。——马克吐温 之前写过一个,最近感觉不好用 然后写了一个更优雅的 12345678910111213141516171819/** * 随机查询 * * @param mapper 持久层DAO * @param limit 随机条数 * @return java.util.List<T> * @author <achao1441470436@gmail.com> * @since 2021/8/10 15:30 */public static <T> List<T> getAny(BaseMapper<T> mapper, T condition, Integer limit) { LambdaQueryWrapper<T> wrapper = Wrappers.lambdaQuery(condition); Integer total = mapper.selectCount(wrapper); if (limit == nu...
2021-04-06
阿里云镜像快速构建springboot
智者弃短取长,以致其功。——《后汉书·王符传》 我们创建springboot项目时如果使用原来的https://start.spring.io构建会很慢 这里我们可以使用阿里云的脚手架地址 1https://start.aliyun.com 我们照常输入项目组和名称 下一步后我们发现除了自带的starter我们还可以选阿里巴巴的 非常实用
2022-09-12
hutool动态编译+lombok
显示出对别人的欢乐不屑一顾的样子,那是侮辱了别人——玛格丽特·尤瑟纳尔 这里采取了一种讨巧的方式避开了需求,实现了效果 思路是使用lombok官方自带的delombok进行处理: 见:https://gitee.com/dromara/hutool/issues/I56DED delombok官方文档:https://projectlombok.org/features/delombok 代码如下: 12345678910111213141516171819202122232425262728293031package com.ruben;import cn.hutool.core.compiler.CompilerUtil;import cn.hutool.core.io.FileUtil;import cn.hutool.core.util.ReflectUtil;import cn.hutool.core.util.RuntimeUtil;import cn.hutool.core.util.StrUtil;import org.junit.jupiter.api.As...
2023-03-09
JOOL
感官并不欺骗人,欺骗人的是判断力——歌德 分享一个框架JOOL https://github.com/jOOQ/jOOL 其封装了更好用的lambda 例如: 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119// (1, 2, 3, 4, 5, 6)Seq.of(1, 2, 3).concat(Seq.of(4, 5, 6));// trueSeq.of(1, 2, 3, 4).contains(2);// trueSeq.of(1, 2, 3, 4).containsAll(2, 3);// trueSeq.of(1, 2, 3,...
2023-08-19
Delimiter
青春如初春,如朝日,如百卉之萌动,如利刃之新发于硎,人生最宝贵之时期也。青年之于社会,犹新鲜活泼细胞之在身。——陈独秀 分享一下:org.springframework.boot.convert.Delimiter的用法 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950/* * Copyright 2012-2019 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * https://www.apache.org/licenses/LICENSE-...
2023-06-15
wrapper支持typeHandler
错误经不起失败,但真理却不怕失败。——泰戈尔 相关pr: https://gitee.com/dromara/stream-query/pulls/340 大致使用方式 123456789101112131415161718192021222324@Testvoid selectTest() { Name name = new Name(); name.setUsername("VampireAchao"); name.setNickname("阿超"); UserInfoWithJsonName user = new UserInfoWithJsonName(); user.setName(name); Database.saveFewSql(Lists.of(user)); Database.updateFewSql(Lists.of(user)); LambdaQueryWrapper<UserInfoWithJsonName> wrapper = QueryCondition.qu...

阿超
我的名字叫阿超 年龄25岁 家在北京市 职业是软件开发 每天最晚也会在八点前回家 不抽烟 酒浅尝辄止 晚上十二点上床 保证睡足八个小时 睡前写一篇博客 再做二十分钟俯卧撑暖身 然后再睡觉 基本能熟睡到天亮 像婴儿一样不留下任何疲劳和压力 就这样迎来第二天的早晨 健康检查结果也显示我很正常 我想说明我是一个不论何时都追求内心平稳的人 不拘泥于胜负 不纠结于烦恼 不树立使我夜不能寐的敌人 这就是我在这社会的生活态度
Follow Me公告
This is my Blog