Join QQ Group now: 1003811176
Tobias is a flutter plugin for AliPaySDK, works on iOS, Android and OpenHarmony
I highly recommend that you read the official documents before using tobias.
-
For iOS, you have to configure your Xcode project manually. See iOS Configuration.
-
for OpenHarmony, you have to add scheme
alipaysto module.json5 in your project like this:
{
"module": {
"querySchemes": [
"alipays"
],
}
}Breaking change in 6.0.0: tobias no longer modifies your Xcode project during
pod install. Thetobias:section inpubspec.yaml(url_scheme,no_utdid,ios.ignore_security,ios.universal_link) is obsolete and is ignored. Configure the following by hand.
tobias supports both Swift Package Manager and CocoaPods. To use SPM, enable it once:
flutter config --enable-swift-package-managerNothing else is required — Flutter picks up ios/tobias/Package.swift automatically. If SPM is
not enabled, the CocoaPods podspec is used as before.
Add your own url scheme (a unique string used to resume your app, _ is not allowed):
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>alipay</string>
<key>CFBundleURLSchemes</key>
<array>
<string>your_url_scheme</string>
</array>
</dict>
</array>Allow your app to query the Alipay app:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>alipays</string>
</array>Alipay still serves some content over HTTP, so unless you know what you are doing, add:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
</dict>Universal link is required by Alipay. Enable the Associated Domains capability and add the host of your universal link:
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:your.domain.com</string>
</array>See example/ios/Runner for a working setup.
It's simple,pass Tobias your order info from server :
import 'package:tobias/tobias.dart' ;
Tobias tobias = Tobias();
tobias.pay(yourOrder);If you're working with iOS, please add and pass universal link. See how to configure universal link.
The result is map contains results from AliPay.The result also contains an external filed named platform which
means the result is from iOS or android.
Result sample:
{
result: partner="2088411752388544"&seller_id="etongka123@163.com"&out_trade_no="180926084213001"&subject="test pay"&total_fee="0.01"¬ify_url="http://127.0.0.1/alipay001"&service="mobile.securitypay.pay"&payment_type="1"&_input_charset="utf-8"&it_b_pay="30m"&return_url="m.alipay.com"&success="true"&sign_type="RSA"&sign="nCZ8MDhsNvYNAbrLZJZ2VUy6vydgAp+JCq1aQo6ORDYtI9zwtnja3qNGQNiDJCuktoIj7fSTM487XhjPDqnOreZjIA1GJpxu9D1I3nMXIn1M7DfZ0noDwXcYZ438/jbYac7g8mhpwdKGweLCAni9mO3Y6q3iBFkox8i9PcsGxJY=",
resultStatus: 9000,
memo: ,
platform:iOS
}
NOTE:Tobias use pay_V2.
NOTE: the
no_utdidvariant of the iOS SDK has been removed in 6.0.0. If you depend on it, stay on 5.x for now.
import 'package:tobias/tobias.dart' ;
Tobias tobias = Tobias();
tobias.auth("your auth str);
Tobias tobias = Tobias();
var result = await tobias.isAliPayInstalled;
You can also call tobias.version which returns a map contains version and platform.
There's no need to override AppDelegate since tobais 1.0.0. If you have done that before, please remove
the following code in your AppDelegate:
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
return [TobiasPlugin handleOpenURL:url];
}
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options
{
return [TobiasPlugin handleOpenURL:url];
}If you have to override these two functions, make sure you have called the super:
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
return [super application:application openURL:url sourceApplication:sourceApplication annotation:annotation];
}
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url options:(NSDictionary<NSString*, id> *)options
{
return [super application:application openURL:url options:options];
}Buy me 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
http://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.





