PH2 9abac35b82 | hace 3 años | |
---|---|---|
android | hace 3 años | |
example | hace 3 años | |
ios | hace 3 años | |
lib | hace 3 años | |
test | hace 3 años | |
CHANGELOG.md | hace 3 años | |
LICENSE | hace 3 años | |
README.md | hace 3 años | |
pubspec.yaml | hace 3 años |
京东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');