From c649ebc07f9e97633591b3980bda56013720bc47 Mon Sep 17 00:00:00 2001 From: "zhen.guo" Date: Mon, 21 Apr 2025 13:34:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4=E8=BF=9D=E7=A6=81=E8=AF=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/Application_guide/en/network-comm/esim/README.md | 9 ++++----- docs/Application_guide/zh/network-comm/esim/README.md | 9 ++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/docs/Application_guide/en/network-comm/esim/README.md b/docs/Application_guide/en/network-comm/esim/README.md index 54a30272..13b797ff 100644 --- a/docs/Application_guide/en/network-comm/esim/README.md +++ b/docs/Application_guide/en/network-comm/esim/README.md @@ -298,7 +298,7 @@ def usrFun(result): esim.setCallback(usrFun) # activationCode Please use your own data. The following activationCode is for example only. -esim.profileOTA('LPA:1$nepaltelecomnpl.rsp.instant-connectivity.com$3D7F8-D728D-6A51E-F1483','') +esim.profileOTA('LPA:XXX','') ``` @@ -482,15 +482,14 @@ def run(): esim_t.get_profile_list(0) esim_t.esim_log("-------------------------------------------------") # Download and install the profile of the operator to be switched - # Download the profile with AccCode LPA:1$secsmsminiapp.eastcompeace.com$09533D4E06D041E396E4F4D8E427FF5B - # The actual value should be passed as a parameter based on the actual situation. - esim_t.profile_ota('LPA:1$secsmsminiapp.eastcompeace.com$09533D4E06D041E396E4F4D8E427FF5B','') + # The following activationCode is for example only. + esim_t.profile_ota('LPA:XXX','') # Wait for the download result esim_t.wait_ota_result() # Delete the original operator's profile information - uiccid = '89861234567891232113' + uiccid = 'XXX' esim_t.esim_log("will delelte uiccid {}".format(uiccid)) esim_t.profile_handle(2, uiccid) esim_t.esim_log("will display delelte iccid info") diff --git a/docs/Application_guide/zh/network-comm/esim/README.md b/docs/Application_guide/zh/network-comm/esim/README.md index 5c0c7b07..c2a38920 100644 --- a/docs/Application_guide/zh/network-comm/esim/README.md +++ b/docs/Application_guide/zh/network-comm/esim/README.md @@ -311,7 +311,7 @@ def usrFun(result): esim.setCallback(usrFun) # activationCode请使用自己的数据,下述activationCode仅作示例参数。 -esim.profileOTA('LPA:1$nepaltelecomnpl.rsp.instant-connectivity.com$3D7F8-D728D-6A51E-F1483','') +esim.profileOTA('LPA:XXX','') ``` @@ -501,15 +501,14 @@ def run(): esim_t.get_profile_list(0) esim_t.esim_log("-------------------------------------------------") # 先下载安装将要切换的运营商profile信息 - #将下载AccCode为LPA:1$secsmsminiapp.eastcompeace.com$09533D4E06D041E396E4F4D8E427FF5B的profile - #实际值根据真实情况传递参数。 - esim_t.profile_ota('LPA:1$secsmsminiapp.eastcompeace.com$09533D4E06D041E396E4F4D8E427FF5B','') + # 下述activationCode仅作示例参数 + esim_t.profile_ota('LPA:XXX','') #等待下载结果 esim_t.wait_ota_result() # 删除原来的运营商profile信息 - uiccid = '89861234567891232113' + uiccid = 'XXX' esim_t.esim_log("will delelte uiccid {}".format(uiccid)) esim_t.profile_handle(2, uiccid) esim_t.esim_log("will display delelte iccid info") -- Gitee