From 745e26609ab4e0e6aa5cbb7eb7305c0bef60ebdf Mon Sep 17 00:00:00 2001 From: Darcy Ye Date: Wed, 20 Dec 2023 13:45:33 +0800 Subject: [PATCH] fix(connector): update connector readme images URL (#5069) --- .../connector-alipay-native/README.md | 4 +-- packages/connectors/connector-apple/README.md | 6 ++-- .../connector-wechat-native/README.md | 36 +++++++++---------- .../connectors/connector-wechat-web/README.md | 12 +++---- 4 files changed, 29 insertions(+), 29 deletions(-) diff --git a/packages/connectors/connector-alipay-native/README.md b/packages/connectors/connector-alipay-native/README.md index 283b3a1bf..d1defbf05 100644 --- a/packages/connectors/connector-alipay-native/README.md +++ b/packages/connectors/connector-alipay-native/README.md @@ -88,7 +88,7 @@ We assume you have integrated [Logto iOS SDK](https://docs.logto.io/docs/recipes Add the framework: -![Add framework](/packages/connector-alipay-native/docs/add-framework.png) +![Add framework](/packages/connectors/connector-alipay-native/docs/add-framework.png) > ℹ️ **Note** > @@ -208,7 +208,7 @@ Once Alipay native connector is enabled, you can build and run your app to see i 添加 framework: -![Add framework](/packages/connector-alipay-native/docs/add-framework.png) +![Add framework](/packages/connectors/connector-alipay-native/docs/add-framework.png) > ℹ️ **Note** > diff --git a/packages/connectors/connector-apple/README.md b/packages/connectors/connector-apple/README.md index 5d6327fd7..d74f5224d 100644 --- a/packages/connectors/connector-apple/README.md +++ b/packages/connectors/connector-apple/README.md @@ -30,7 +30,7 @@ You need to enroll [Apple Developer Program](https://developer.apple.com/program You can do it via Xcode -> Project settings -> Signing & Capabilities, or visit [Certificates, Identifiers & Profiles](https://developer.apple.com/account/resources/identifiers/list/bundleId). -![Enable Sign in with Apple](/packages/connector-apple/docs/enable-sign-in-with-apple-in-xcode.png) +![Enable Sign in with Apple](/packages/connectors/connector-apple/docs/enable-sign-in-with-apple-in-xcode.png) See the "Enable an App ID" section in [Apple official docs](https://developer.apple.com/documentation/sign_in_with_apple/configuring_your_environment_for_sign_in_with_apple) for more info. @@ -45,13 +45,13 @@ See the "Enable an App ID" section in [Apple official docs](https://developer.ap Click the identifier you just created. Check "Sign in with Apple" on the details page and click "Configure". -![Enable Sign in with Apple](/packages/connector-apple/docs/enable-sign-in-with-apple.png) +![Enable Sign in with Apple](/packages/connectors/connector-apple/docs/enable-sign-in-with-apple.png) In the opening modal, select the App ID you just enabled Sign in with Apple. Enter the domain of your Logto instance without protocol and port, e.g., `your.logto.domain`; then enter the "Return URL" (i.e., Redirect URI), which is the Logto URL with `/callback/${connector_id}`, e.g., `https://your.logto.domain/callback/apple-universal`. You can get the randomly generated `connector_id` after creating Apple connector in Admin Console. -![domain-and-url](/packages/connector-apple/docs/domain-and-url.png) +![domain-and-url](/packages/connectors/connector-apple/docs/domain-and-url.png) Click "Next" then "Done" to close the modal. Click "Continue" on the top-right corner, then click "Save" to save your configuration. diff --git a/packages/connectors/connector-wechat-native/README.md b/packages/connectors/connector-wechat-native/README.md index 1657384de..3c756b194 100644 --- a/packages/connectors/connector-wechat-native/README.md +++ b/packages/connectors/connector-wechat-native/README.md @@ -54,11 +54,11 @@ Open https://open.weixin.qq.com/, click the "Sign Up" button in the upper-right Sign in with the account you just created. In the "Mobile Application" (移动应用) tab, click the big green button "Create a mobile app" (创建移动应用). -![App tabs](/packages/connector-wechat-native/docs/app-tabs.png) +![App tabs](/packages/connectors/connector-wechat-native/docs/app-tabs.png) Let's fill out the required info in the application form. -![Create a mobile app](/packages/connector-wechat-native/docs/create-mobile-app.png) +![Create a mobile app](/packages/connectors/connector-wechat-native/docs/create-mobile-app.png) #### Basic info @@ -77,7 +77,7 @@ You can configure one or both iOS and Android platforms to integrate Logto with Check "iOS app" (iOS 应用), then check the target device type of your app accordingly. -![App platform](/packages/connector-wechat-native/docs/platform.png) +![App platform](/packages/connectors/connector-wechat-native/docs/platform.png) If you chose "No" for the App Store availability, you cloud skip filling out the "AppStore download address" here. @@ -95,7 +95,7 @@ Fill out _Bundle ID_, _Test version Bundle ID_, and _Universal Links_ (actually, Check "Android app" (Android 应用). -![Android app platform](/packages/connector-wechat-native/docs/platform-android-app.png) +![Android app platform](/packages/connectors/connector-wechat-native/docs/platform-android-app.png) Fill out _Application Signing Signature_ (应用签名) and _Application Package Name_ (应用包名). @@ -129,15 +129,15 @@ We assume you have integrated [Logto iOS SDK](https://docs.logto.io/docs/recipes In the Xcode project -> Signing & Capabilities tab, add the "Associated Domains" capability and the universal link you configured before. -![Universal link](/packages/connector-wechat-native/docs/universal-link.png) +![Universal link](/packages/connectors/connector-wechat-native/docs/universal-link.png) Then goes to the "Info" tab, add a [custom URL scheme](https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app) with the WeChat App ID. -![Custom URL scheme](/packages/connector-wechat-native/docs/custom-url-scheme.png) +![Custom URL scheme](/packages/connectors/connector-wechat-native/docs/custom-url-scheme.png) Finally open your `Info.plist`, add `weixinULAPI` and `weixin` under `LSApplicationQueriesSchemes`. -![Plist](/packages/connector-wechat-native/docs/plist.png) +![Plist](/packages/connectors/connector-wechat-native/docs/plist.png) > 🤦 **Note** > @@ -147,11 +147,11 @@ Finally open your `Info.plist`, add `weixinULAPI` and `weixin` under `LSApplicat Add the framework: -![Add framework](/packages/connector-wechat-native/docs/add-framework.png) +![Add framework](/packages/connectors/connector-wechat-native/docs/add-framework.png) And add `-ObjC` to your Build Settings > Linking > Other Linker Flags: -![Linker flags](/packages/connector-wechat-native/docs/linker-flags.png) +![Linker flags](/packages/connectors/connector-wechat-native/docs/linker-flags.png) > ℹ️ **Note** > @@ -289,11 +289,11 @@ Once WeChat native connector is enabled, you can build and run your app to see i 用刚创建的帐号登录。在「移动应用」标签页,点按大而绿的「创建移动应用」按钮。 -![App tabs](/packages/connector-wechat-native/docs/app-tabs.png) +![App tabs](/packages/connectors/connector-wechat-native/docs/app-tabs.png) 让我们填写一下申请表单里的必要信息。 -![Create a mobile app](/packages/connector-wechat-native/docs/create-mobile-app.png) +![Create a mobile app](/packages/connectors/connector-wechat-native/docs/create-mobile-app.png) #### 基础信息 @@ -312,7 +312,7 @@ Once WeChat native connector is enabled, you can build and run your app to see i 勾选「iOS 应用」与你的应用的目标平台。 -![App platform](/packages/connector-wechat-native/docs/platform.png) +![App platform](/packages/connectors/connector-wechat-native/docs/platform.png) 如果你在「应用已上架」中选择了「否」,你可以在这一步跳过「AppStore 下载地址」的填写。 @@ -330,7 +330,7 @@ Once WeChat native connector is enabled, you can build and run your app to see i 勾选「安卓应用」。 -![Android app platform](/packages/connector-wechat-native/docs/platform-android-app.png) +![Android app platform](/packages/connectors/connector-wechat-native/docs/platform-android-app.png) 填写「应用签名」和「应用包名」。 @@ -364,15 +364,15 @@ Once WeChat native connector is enabled, you can build and run your app to see i 在 Xcode 工程 -> Signing & Capabilities 标签页中添加 "Associated Domains" capability 与你之前配置的 universal link。 -![Universal link](/packages/connector-wechat-native/docs/universal-link.png) +![Universal link](/packages/connectors/connector-wechat-native/docs/universal-link.png) 接着切换到 "Info" 标签页,用微信 App ID 添加一个 [custom URL scheme](https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app)。 -![Custom URL scheme](/packages/connector-wechat-native/docs/custom-url-scheme.png) +![Custom URL scheme](/packages/connectors/connector-wechat-native/docs/custom-url-scheme.png) 最终打开 `Info.plist`,在 `LSApplicationQueriesSchemes` 中添加 `weixinULAPI` 和 `weixin`。 -![Plist](/packages/connector-wechat-native/docs/plist.png) +![Plist](/packages/connectors/connector-wechat-native/docs/plist.png) > 🤦 **Note** > @@ -382,11 +382,11 @@ Once WeChat native connector is enabled, you can build and run your app to see i 添加 framework: -![Add framework](/packages/connector-wechat-native/docs/add-framework.png) +![Add framework](/packages/connectors/connector-wechat-native/docs/add-framework.png) 并添加 `-ObjC` 至 Build Settings > Linking > Other Linker Flags: -![Linker flags](/packages/connector-wechat-native/docs/linker-flags.png) +![Linker flags](/packages/connectors/connector-wechat-native/docs/linker-flags.png) > ℹ️ **Note** > diff --git a/packages/connectors/connector-wechat-web/README.md b/packages/connectors/connector-wechat-web/README.md index adbffa0eb..d249964ec 100644 --- a/packages/connectors/connector-wechat-web/README.md +++ b/packages/connectors/connector-wechat-web/README.md @@ -33,7 +33,7 @@ If you don't know the concept of the connector or don't know how to add this con > **⚠️ Caution** > -> This connector is for web apps only. If you are looking for the method for signing in with WeChat in native apps, please see [WeChat native connector](https://github.com/logto-io/logto/tree/master/packages/connector-wechat-native). +> This connector is for web apps only. If you are looking for the method for signing in with WeChat in native apps, please see [WeChat native connector](https://github.com/logto-io/logto/tree/master/packages/connectors/connector-wechat-native). ## Create a web app in the WeChat Open Platform @@ -49,11 +49,11 @@ Open https://open.weixin.qq.com/, click the "Sign Up" button in the upper-right Sign in with the account you just created. In the "Web Application" (网页应用) tab, click the big green button "Create a web app" (创建网页应用). -![App tabs](/packages/connector-wechat/docs/app-tabs.png) +![App tabs](/packages/connectors/connector-wechat/docs/app-tabs.png) Let's fill out the required info in the application form. -![Create a web app](/packages/connector-wechat/docs/create-web-app.png) +![Create a web app](/packages/connectors/connector-wechat/docs/create-web-app.png) #### Basic info @@ -89,7 +89,7 @@ Once WeChat web connector is enabled, you can sign in to your app again to see i > **⚠️ Caution** > -> 这个连接器只适用于网页应用。如果你在寻找移动端原生应用的微信登录解决方案,请移步 [微信原生连接器](https://github.com/logto-io/logto/tree/master/packages/connector-wechat-native)。 +> 这个连接器只适用于网页应用。如果你在寻找移动端原生应用的微信登录解决方案,请移步 [微信原生连接器](https://github.com/logto-io/logto/tree/master/packages/connectors/connector-wechat-native)。 ## 在微信开放平台新建一个网页应用 @@ -105,11 +105,11 @@ Once WeChat web connector is enabled, you can sign in to your app again to see i 用刚创建的帐号登录。在「移动应用」标签页,点按大而绿的「创建移动应用」按钮。 -![App tabs](/packages/connector-wechat/docs/app-tabs.png) +![App tabs](/packages/connectors/connector-wechat/docs/app-tabs.png) 让我们填写一下申请表单里的必要信息。 -![Create a web app](/packages/connector-wechat/docs/create-web-app.png) +![Create a web app](/packages/connectors/connector-wechat/docs/create-web-app.png) #### 基础信息