搜索
缓存时间12 现在时间12 缓存数据 你相信吗 也许在另一个平行时空 有一个跟你长得很像很像的人 正在热烈得爱着那个你爱不到的人
查看: 401|回复: 2

分享一个 Giffgaff 实体转 eSIM 的 Postman 脚本

[复制链接]
发表于 2024-10-12 13:34:53 | 显示全部楼层 |阅读模式

马上注册,免受广告困扰,轻松兑换eSIM!

您需要 登录 才可以下载或查看,没有账号?注册

×
导入Postman后
门户Giffgaff资料夹右侧
授权(认证)
拉到底按获取新访问令牌(取得新权限)
跟随网页登入Giffgaff帐号
如果登入有成功管理访问
令牌的视窗里点击使用令牌(使用权限) )
之后依序左边的要求
按下右边蓝色的发送(发送)

在“检查邮件验证码验证电子邮件代码”的步骤里
把网址的code=000000中的000000换成电子邮件里的验证码
然后点击发送

依序实现最后一步即可看到eSIM的QRCode
{
  "info": {
    "_postman_id": "b452c872-707a-42fb-9e1b-c8520c4e0a19",
    "name": "Giffgaff",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "2203562"
  },
  "item": [
    {
      "name": "發送認證郵件 Send Email Verification",
      "event": [
        {
          "listen": "test",
          "script": {
            "exec": [
              "pm.collectionVariables.set("email_code_ref", pm.response.json().ref);"
            ],
            "type": "text/javascript"
          }
        }
      ],
      "request": {
        "method": "POST",
        "header": [],
        "body": {
          "mode": "raw",
          "raw": "{\r\n\t"source": "esim",\r\n\t"preferredChannels": ["EMAIL"]\r\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://id.giffgaff.com/v4/mfa/challenge/me",
          "protocol": "https",
          "host": [
            "id",
            "giffgaff",
            "com"
          ],
          "path": [
            "v4",
            "mfa",
            "challenge",
            "me"
          ]
        }
      },
      "response": []
    },
    {
      "name": "檢查郵件認證碼 Verify Email code",
      "event": [
        {
          "listen": "test",
          "script": {
            "exec": [
              "pm.collectionVariables.set("email_signature", pm.response.json().signature);"
            ],
            "type": "text/javascript"
          }
        },
        {
          "listen": "prerequest",
          "script": {
            "exec": [
              "pm.collectionVariables.set("email_code", pm.request.url.query.get("code"));"
            ],
            "type": "text/javascript"
          }
        }
      ],
      "request": {
        "method": "POST",
        "header": [],
        "body": {
          "mode": "raw",
          "raw": "{\r\n\t"ref": "{{email_code_ref}}",\r\n\t"code": "{{email_code}}"\r\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://id.giffgaff.com/v4/mfa/validation?code=159804",
          "protocol": "https",
          "host": [
            "id",
            "giffgaff",
            "com"
          ],
          "path": [
            "v4",
            "mfa",
            "validation"
          ],
          "query": [
            {
              "key": "code",
              "value": "159804"
            }
          ]
        }
      },
      "response": []
    },
    {
      "name": "取得會員資訊 Get Member",
      "event": [
        {
          "listen": "test",
          "script": {
            "exec": [
              "pm.collectionVariables.set("memberId", pm.response.json().data.memberProfile.id);\r",
              ""
            ],
            "type": "text/javascript"
          }
        },
        {
          "listen": "prerequest",
          "script": {
            "exec": [
              "console.log(pm.collectionVariables.get("email_signature"))\r",
              "if(pm.collectionVariables.get("email_signature")==null || pm.collectionVariables.get("email_signature")== ""){\r",
              "    console.error("Email 尚未驗證");\r",
              "    throw new Error("Email 尚未驗證");\r",
              "}"
            ],
            "type": "text/javascript"
          }
        }
      ],
      "request": {
        "method": "POST",
        "header": [],
        "body": {
          "mode": "graphql",
          "graphql": {
            "query": "query getMemberProfileAndSim {\r\n  memberProfile {\r\n    id\r\n    memberName\r\n    __typename\r\n  }\r\n  sim {\r\n    phoneNumber\r\n    status\r\n    __typename\r\n  }\r\n}\r\n",
            "variables": ""
          }
        },
        "url": {
          "raw": "https://publicapi.giffgaff.com/gateway/graphql",
          "protocol": "https",
          "host": [
            "publicapi",
            "giffgaff",
            "com"
          ],
          "path": [
            "gateway",
            "graphql"
          ]
        }
      },
      "response": []
    },
    {
      "name": "申請 SIM卡 Reserve SIM",
      "event": [
        {
          "listen": "test",
          "script": {
            "exec": [
              "pm.collectionVariables.set("esim_ssn", pm.response.json()[0].data.reserveESim.esim.ssn);\r",
              "pm.collectionVariables.set("esim_activation_code", pm.response.json()[0].data.reserveESim.esim.activationCode);\r",
              ""
            ],
            "type": "text/javascript"
          }
        }
      ],
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "x-gg-app-os",
            "value": "iOS",
            "type": "text"
          },
          {
            "key": "x-gg-app-os-version",
            "value": "14",
            "type": "text"
          },
          {
            "key": "x-gg-app-build-number",
            "value": "722",
            "type": "text"
          },
          {
            "key": "x-gg-app-device-manufacturer",
            "value": "apple",
            "type": "text"
          },
          {
            "key": "x-gg-app-device-model",
            "value": "iphone15",
            "type": "text"
          },
          {
            "key": "x-gg-app-version",
            "value": "13.21.2",
            "type": "text"
          }
        ],
        "body": {
          "mode": "graphql",
          "graphql": {
            "query": "mutation reserveESim($input: ESimReservationInput!) {\r\n  reserveESim: reserveESim(input: $input) {\r\n    id\r\n    memberId\r\n    reservationStartDate\r\n    reservationEndDate\r\n    status\r\n    esim {\r\n      ssn\r\n      activationCode\r\n      deliveryStatus\r\n      associatedMemberId\r\n      __typename\r\n    }\r\n    __typename\r\n  }\r\n}\r\n",
            "variables": "{\r\n    "input": {\r\n\t\t"memberId": "{{memberId}}",\r\n\t\t"userIntent": "SWITCH"\r\n\t}\r\n}"
          }
        },
        "url": {
          "raw": "https://publicapi.giffgaff.com/gateway/graphql",
          "protocol": "https",
          "host": [
            "publicapi",
            "giffgaff",
            "com"
          ],
          "path": [
            "gateway",
            "graphql"
          ]
        }
      },
      "response": []
    },
    {
      "name": "申請交換eSIM Swap SIM",
      "event": [
        {
          "listen": "test",
          "script": {
            "exec": [
              ""
            ],
            "type": "text/javascript"
          }
        },
        {
          "listen": "prerequest",
          "script": {
            "exec": [
              ""
            ],
            "type": "text/javascript"
          }
        }
      ],
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "x-gg-app-os",
            "value": "iOS",
            "type": "text"
          },
          {
            "key": "x-gg-app-os-version",
            "value": "14",
            "type": "text"
          },
          {
            "key": "x-gg-app-build-number",
            "value": "722",
            "type": "text"
          },
          {
            "key": "x-gg-app-device-manufacturer",
            "value": "apple",
            "type": "text"
          },
          {
            "key": "x-gg-app-device-model",
            "value": "iphone15",
            "type": "text"
          },
          {
            "key": "x-gg-app-version",
            "value": "13.21.2",
            "type": "text"
          }
        ],
        "body": {
          "mode": "graphql",
          "graphql": {
            "query": "mutation SwapSim($activationCode: String!, $mfaSignature: String!) {\r\n  swapSim(activationCode: $activationCode, mfaSignature: $mfaSignature) {\r\n    old {\r\n      ssn\r\n      activationCode\r\n      __typename\r\n    }\r\n    new {\r\n      ssn\r\n      activationCode\r\n      __typename\r\n    }\r\n    __typename\r\n  }\r\n}\r\n",
            "variables": "{\r\n\t"activationCode": "{{esim_activation_code}}",\r\n\t"mfaSignature": "{{email_signature}}"\r\n}"
          }
        },
        "url": {
          "raw": "https://publicapi.giffgaff.com/gateway/graphql",
          "protocol": "https",
          "host": [
            "publicapi",
            "giffgaff",
            "com"
          ],
          "path": [
            "gateway",
            "graphql"
          ]
        }
      },
      "response": []
    },
    {
      "name": "取得eSIM Get ESIMs",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "x-gg-app-os",
            "value": "iOS",
            "type": "text"
          },
          {
            "key": "x-gg-app-os-version",
            "value": "14",
            "type": "text"
          },
          {
            "key": "x-gg-app-build-number",
            "value": "722",
            "type": "text"
          },
          {
            "key": "x-gg-app-device-manufacturer",
            "value": "apple",
            "type": "text"
          },
          {
            "key": "x-gg-app-device-model",
            "value": "iphone15",
            "type": "text"
          },
          {
            "key": "x-gg-app-version",
            "value": "13.21.2",
            "type": "text"
          }
        ],
        "body": {
          "mode": "graphql",
          "graphql": {
            "query": "query getESims($deliveryStatus: ESimDeliveryStatus!) {\r\n  eSims(deliveryStatus: $deliveryStatus) {\r\n    ssn\r\n    __typename\r\n  }\r\n}\r\n",
            "variables": "{\r\n\t"deliveryStatus": "DOWNLOADABLE"\r\n}"
          }
        },
        "url": {
          "raw": "https://publicapi.giffgaff.com/gateway/graphql",
          "protocol": "https",
          "host": [
            "publicapi",
            "giffgaff",
            "com"
          ],
          "path": [
            "gateway",
            "graphql"
          ]
        }
      },
      "response": []
    },
    {
      "name": "取得eSIM下載碼 Get ESIM Token",
      "event": [
        {
          "listen": "test",
          "script": {
            "exec": [
              "pm.collectionVariables.set("lpa_string", pm.response.json()[0].data.eSimDownloadToken.lpaString);"
            ],
            "type": "text/javascript"
          }
        }
      ],
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "x-gg-app-os",
            "value": "iOS",
            "type": "text"
          },
          {
            "key": "x-gg-app-os-version",
            "value": "14",
            "type": "text"
          },
          {
            "key": "x-gg-app-build-number",
            "value": "722",
            "type": "text"
          },
          {
            "key": "x-gg-app-device-manufacturer",
            "value": "apple",
            "type": "text"
          },
          {
            "key": "x-gg-app-device-model",
            "value": "iphone15",
            "type": "text"
          },
          {
            "key": "x-gg-app-version",
            "value": "13.21.2",
            "type": "text"
          }
        ],
        "body": {
          "mode": "graphql",
          "graphql": {
            "query": "query eSimDownloadToken($ssn: String!) {\r\n  eSimDownloadToken(ssn: $ssn) {\r\n    id\r\n    host\r\n    matchingId\r\n    lpaString\r\n    __typename\r\n  }\r\n}\r\n",
            "variables": "{\r\n\t"ssn": "{{esim_ssn}}"\r\n}"
          }
        },
        "url": {
          "raw": "https://publicapi.giffgaff.com/gateway/graphql",
          "protocol": "https",
          "host": [
            "publicapi",
            "giffgaff",
            "com"
          ],
          "path": [
            "gateway",
            "graphql"
          ]
        }
      },
      "response": []
    },
    {
      "name": "產生QRCode Get ESIM QRCode",
      "request": {
        "method": "GET",
        "header": [],
        "url": {
          "raw": "https://api.qrserver.com/v1/create-qr-code/?data={{lpa_string}}&size=200x200",
          "protocol": "https",
          "host": [
            "api",
            "qrserver",
            "com"
          ],
          "path": [
            "v1",
            "create-qr-code",
            ""
          ],
          "query": [
            {
              "key": "data",
              "value": "{{lpa_string}}"
            },
            {
              "key": "size",
              "value": "200x200"
            }
          ]
        }
      },
      "response": []
    }
  ],
  "auth": {
    "type": "oauth2",
    "oauth2": [
      {
        "key": "refreshRequestParams",
        "value": [],
        "type": "any"
      },
      {
        "key": "tokenRequestParams",
        "value": [],
        "type": "any"
      },
      {
        "key": "authRequestParams",
        "value": [],
        "type": "any"
      },
      {
        "key": "tokenName",
        "value": "Giffgaff",
        "type": "string"
      },
      {
        "key": "challengeAlgorithm",
        "value": "S256",
        "type": "string"
      },
      {
        "key": "state",
        "value": "cd34c1ef-f1c7-4d5c-8030-bf9753a2ccd5",
        "type": "string"
      },
      {
        "key": "scope",
        "value": "read",
        "type": "string"
      },
      {
        "key": "redirect_uri",
        "value": "giffgaff://auth/callback/",
        "type": "string"
      },
      {
        "key": "grant_type",
        "value": "authorization_code_with_pkce",
        "type": "string"
      },
      {
        "key": "clientSecret",
        "value": "OQv4cfiyol8TvCW4yiLGj0c1AkTR3N2JfRzq7XGqMxk=",
        "type": "string"
      },
      {
        "key": "clientId",
        "value": "4a05bf219b3985647d9b9a3ba610a9ce",
        "type": "string"
      },
      {
        "key": "authUrl",
        "value": "https://id.giffgaff.com/auth/oauth/authorize",
        "type": "string"
      },
      {
        "key": "addTokenTo",
        "value": "header",
        "type": "string"
      },
      {
        "key": "client_authentication",
        "value": "header",
        "type": "string"
      },
      {
        "key": "accessTokenUrl",
        "value": "https://id.giffgaff.com/auth/oauth/token",
        "type": "string"
      }
    ]
  },
  "event": [
    {
      "listen": "prerequest",
      "script": {
        "type": "text/javascript",
        "exec": [
          ""
        ]
      }
    },
    {
      "listen": "test",
      "script": {
        "type": "text/javascript",
        "exec": [
          ""
        ]
      }
    }
  ],
  "variable": [
    {
      "key": "memberId",
      "value": ""
    },
    {
      "key": "esim_ssn",
      "value": ""
    },
    {
      "key": "esim_activation_code",
      "value": ""
    },
    {
      "key": "email_code_ref",
      "value": ""
    },
    {
      "key": "email_signature",
      "value": ""
    },
    {
      "key": "lpa_string",
      "value": ""
    },
    {
      "key": "email_code",
      "value": ""
    }
  ]
}
如果遇到问题不会手动解决的小伙伴们可以尝试一下:
https://api.postman.com/collecti ... DF2WK19YPHS774FTVQZ
爱生活,爱奶昔~
发表于 2024-10-12 13:36:38 | 显示全部楼层
似乎导入的短信是废的,如果是 5ber.eSIM 的话需要手动修复短信中心
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

发表于 2024-11-7 19:55:11 来自手机 | 显示全部楼层
感谢
爱生活,爱奶昔~
回复 支持 反对

使用道具 举报

Powered by Nyarime. Licensed

GMT+8, 2024-12-23 12:28 , Processed in 0.019899 second(s), 12 queries , Gzip On, Redis On
发帖际遇 ·手机版 ·小黑屋 ·RSS ·奶昔网

登录切换风格
快速回复 返回顶部 返回列表