The specific number retention methods are as follows#
Method 1: Directly recharge 10 MOP for number retention#
In previous introductions on other platforms, the blue card and red card need to be recharged every 180 days, with a minimum of 50 MOP, to extend the validity period by 180 days!
Here, we introduce that you can retain the number by recharging only 10 MOP!
After activating the Macau card with real-name registration, it actually opens up 2 numbers for us. One is a local Macau number, and the other is a China Telecom number.
However, if the China Telecom number is not activated, that number is an empty number! Nevertheless, this telecom number can be recharged domestically!
So you only need to recharge this China Telecom number through WeChat Wallet or Alipay. The minimum recharge is 10 RMB!
After testing, the blogger recharged 10 RMB, and the validity period was extended!
Method 2: Code for number retention#
- Open the Macau Telecom official recharge page in the Chrome browser on your computer
https://www.1888.com.mo/payRecharge/goIndex - After entering the recharge number, press F12, paste and execute the following code in the Console page to recharge 10.01 MOP, which will extend the prepaid card's life for 180 days.
The code is as follows:
var param={
"userId":$("#dataForm input[name='userId']").val(),
"userType":20,
"phoneNo":$("#dataForm input[name='phoneNo']").val(),
"mustPayMoney":"0",
"payMoney":prompt('How much do you want to recharge?'),
};
$.ajax({
type:"POST",
url:contextPath+"/payRecharge/submitBill?timestamp="+commonTools.getTimestamp(),
dataType:"json",
data:param,
cache:false,
success:function(response){
if (response.code == 0) {
var channelCode=response.data.channelCode;
var channelOrderNo=response.data.channelOrderNo;
var orderType=response.data.orderType;
window.location.href=response.data.mallUrl+"/orderpay/payQuery?channelCode="+channelCode+"&channelOrderNo="+channelOrderNo+"&orderType="+orderType+'×tamp='+commonTools.getTimestamp();
}else {
$("#erroMsg").html(response.data);
}
},
error:function(){
$("#erroMsg").html(msgData.payMoneysubmiterr01);
}
});