我从这段代码中得到 CID、MNC、MCC、LAC
telephonyManager = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
cellLocation = (GsmCellLocation)telephonyManager.getCellLocation();
cid = cellLocation.getCid();
lac = cellLocation.getLac();
我把它放在这里http://opencellid.org/cell/get?key=???&mcc=520&mnc=18&lac=24511&cellid=282399我得到错误任何人都可以告诉我我该怎么办?
还有其他方法可以在 android 上使用 CID、MNC、MCC、LAC 获得 Lat Lon 吗?