PH2 9abac35b82 | il y a 3 ans | |
---|---|---|
android | il y a 3 ans | |
example | il y a 3 ans | |
ios | il y a 3 ans | |
lib | il y a 3 ans | |
test | il y a 3 ans | |
CHANGELOG.md | il y a 3 ans | |
LICENSE | il y a 3 ans | |
README.md | il y a 3 ans | |
pubspec.yaml | il y a 3 ans |
京东sdk在Flutter上的实现,通过它可以实现唤醒京东app打开京东任意的url,包括商品详情等功能。
京东官方接入文档,在android和ios分别加入安全图片。
在 Info.plist 文件中添加
<key>LSApplicationQueriesSchemes</key>
<array>
<string>openapp.jdmobile</string>
<string>jdlogin</string>
</array>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>sdkback</string>
<string>此处填入appkey</string>
</array>
</dict>
</array>
import 'package:jdsdk/jdsdk.dart';
Jdsdk.init(appKey: '', appSecret: '');
Jdsdk.openUrl( url: 'https://item.m.jd.com/product/100009963992.html');