Fluwx
is flutter plugin for WeChatSDK which allows developers to call
WeChatSDK native APIs.
Join QQ Group now: 1003811176
- Share images, texts, music and so on to WeChat, including session, favorite and timeline.
- Payment with WeChat.
- Get auth code before you login in with WeChat.
- Launch mini program in WeChat.
- Subscribe Message.
- Just open WeChat app.
- Launch app From wechat link.
Fluwx
is good but not God. You'd better read official documents before
integrating Fluwx
. Then you'll understand how to generate Android signature, what's universal link for iOS, how to add URL schema for iOS and so on.
Add the following dependencies in your pubspec.yaml
file:
Fluwx
with pay:
dependencies:
fluwx: ^${latestVersion}
Fluwx
without pay:
dependencies:
fluwx_no_pay: ^${latestVersion}
NOTE: Never forget to replace ^${latestVersion} with actual version.
Register your app via fluwx
if necessary.
registerWxApi(appId: "wxd930ea5d5a228f5f",universalLink: "https://your.univerallink.com/link/");
The param universalLink
only works with iOS. You can read this document to learn
how to create universalLink. You can also learn how to add URL schema, how to add LSApplicationQueriesSchemes
in your iOS project. This is essential.
For Android, you shall know to how generate signature for your app in this page.
And you have to understand the difference between debug signature and release signature. Once the signature is incorrect, then you'll get errCode = -1
.
For more capabilities, you can read the public functions of fluwx
.
Buy the writer a cup of coffee。
Copyright 2018 OpenFlutter Project
Licensed to the Apache Software Foundation (ASF) under one or more contributor
license agreements. See the NOTICE file distributed with this work for
additional information regarding copyright ownership. The ASF licenses this
file to you under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy of
the License at
https://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.