Flutter OHOS harmony_fluwx 集成微信服务(二)

HarmonyOS next之harmony_fluwx 集成微信服务(2)

fluwx 链接:https://gitee.com/almost777/fluwx

接入功能

  • 分享图片,文本,音乐,视频等。支持分享到会话,朋友圈以及收藏.
  • 微信支付.
  • 在微信登录时,获取Auth Code.
  • 拉起小程序.
  • 订阅消息.
  • 打开微信.
  • 从微信标签打开应用
初始化

注册 WxAPI

registerWxApi(appId: "wxd930ea5d5a228f5f",universalLink: "https://your.univerallink.com/link/");

登录

sendWeChatAuth的目的是为了获取code,拿到了code才能进行微信登录,可以通过官方文档查看具体流程。

 sendWeChatAuth(scope: "snsapi_userinfo", state: "wechat_sdk_demo_test");

为什么不支持获取用户信息?获取用户信息应该后端来做,即使没有后端,你也可以在dart层自己实现.

从H5启动app

Fluwx 支持从<wx-open-launch-app>启动你的app, 并且支持传递extInfo给你的app.
对于Android来说,你要在AndroidManifest.xml中给你的Activity加上一个标签:

   <intent-filter>
   <action android:name="${applicationId}.FlutterActivity" />
   <category android:name="android.intent.category.DEFAULT" />
   </intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="${applicationId}"
android:path="/"
android:scheme="wechatextmsg" />
</intent-filter>

与此同时,你还需要在需要在application中加上<meta-data>,把你的appId放进去:

<meta-data
android:name="weChatAppId"
android:value="12345678" />

如果你想把extInfo传给Flutter, 你要在MainActivity加上如下代码:

  override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
//If you didn't configure WxAPI, add the following code
WXAPiHandler.setupWxApi("wxd930ea5d5a258f4f",this)
//Get Ext-Info from Intent.
FluwxRequestHandler.handleRequestInfoFromIntent(intent)
}

如果你想自定义你的调用逻辑, 你需要在application中加上<meta-data>:

<meta-data
android:name="handleWeChatRequestByFluwx"
android:value="false" />

然后, 自己实现 FluwxRequestHandler.customOnReqDelegate.

兼容Android 11

请在你的应用的AndroidManifest.xml中添加以下queries:

<queries>
<intent>
<action android:name="${applicationId}.FlutterActivity" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
<data
android:host="${applicationId}"
android:path="/"
android:scheme="wechatextmsg" />
</intent>
</queries>

IOS

请在你的AppDelegate中主动注册WXApi

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
//向微信注册
[[FluwxDelegate defaultManager] registerWxAPI:@"" universalLink:@""];
return YES;
}

如你想主动获取从网页传进来的值 ,请主动调用fluwx.getExtMsg()

好的,下面是flutter集成fluwx实现微信登录的步骤和代码: 1. 首先在项目的 pubspec.yaml 文件中添加依赖: ```dart dependencies: fluwx: ^1.2.0 ``` 2. 在项目的 AndroidManifest.xml 文件中添加以下配置: ```xml <activity android:name=".wxapi.WXEntryActivity" android:exported="true" android:launchMode="singleTask" android:taskAffinity="" android:theme="@android:style/Theme.Translucent.NoTitleBar" /> ``` 3. 在项目的 Info.plist 文件中添加以下配置: ```xml <key>CFBundleURLTypes</key> <array> <dict> <key>CFBundleTypeRole</key> <string>Editor</string> <key>CFBundleURLName</key> <string>weixin</string> <key>CFBundleURLSchemes</key> <array> <string>你的AppID</string> </array> </dict> </array> <key>LSApplicationQueriesSchemes</key> <array> <string>weixin</string> </array> ``` 4. 在你的代码中引入 fluwx 包: ```dart import 'package:fluwx/fluwx.dart' as fluwx; ``` 5. 在你的代码中注册 fluwx: ```dart fluwx.registerWxApi( appId: "你的AppID", universalLink: "你的Universal Link", ); ``` 6. 在你的代码中实现微信登录: ```dart // 检查是否安装微信 bool isInstalled = await fluwx.isWeChatInstalled(); if (!isInstalled) { // 提示用户安装微信 return; } // 发送微信登录请求 fluwx.sendWeChatAuth( scope: "snsapi_userinfo", // 授权作用域 state: "wechat_login", // 自定义状态值 ).then((response) { // 处理登录结果 if (response.errCode == fluwx.WeChatSDK.ERR_OK) { // 登录成功,获取用户信息 String code = response.code; fluwx .getWeChatUserInfo( code: code, ) .then((userInfo) { // 处理用户信息 }); } else { // 登录失败 } }); ``` 以上就是使用 fluwx 实现微信登录的全部步骤和代码。需要注意的是,你需要将代码中的 "你的AppID" 和 "你的Universal Link" 替换为你在微信开放平台上注册的应用的实际值。同时,你还需要在微信开放平台上配置你的应用,以便 fluwx 能够正确地与微信进行交互。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值