https://github.com/flutterbest/douyin_kit
flutter版本的抖音开放平台sdk,支持ios,android
https://github.com/flutterbest/douyin_kit
Last synced: 7 months ago
JSON representation
flutter版本的抖音开放平台sdk,支持ios,android
- Host: GitHub
- URL: https://github.com/flutterbest/douyin_kit
- Owner: flutterbest
- License: apache-2.0
- Created: 2022-04-24T01:26:13.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-01T03:07:47.000Z (over 3 years ago)
- Last Synced: 2025-04-01T04:32:40.039Z (9 months ago)
- Language: Dart
- Homepage: https://open.douyin.com/platform/doc?doc=docs/develop/guide/douyin-sdk/android
- Size: 130 KB
- Stars: 5
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# douyin_kit
flutter版抖音SDK
## docs
* [抖音开放平台](https://open.douyin.com/platform)
## android
```
# 不需要做任何额外接入工作
# 混淆已打入 Library,随 Library 引用,自动添加到 apk 打包混淆
```
## ios
```
在Xcode中,选择你的工程设置项,选中“TARGETS”一栏,在“info”标签栏的“URL type“添加“URL scheme”为你所注册的应用程序id
URL Types
douyin: identifier=douyin schemes=${clientKey}
```
```
iOS 9系统策略更新,限制了http协议的访问,此外应用需要在“Info.plist”中将要使用的URL Schemes列为白名单,才可正常检查其他应用是否安装。
LSApplicationQueriesSchemes
douyinopensdk
douyinsharesdk
snssdk1128
NSAppTransportSecurity
NSAllowsArbitraryLoads
```
```
分享的图片通过相册进行跨进程共享手段,如需使用分享功能,还需要填相册访问权限,在 info 标签栏中添加 Privacy - Photo Library Usage Description。
NSPhotoLibraryUsageDescription
分享的图片通过相册进行跨进程共享
```
## flutter
* snapshot
```
dependencies:
douyin_kit:
git:
url: https://github.com/flutterbest/douyin_kit.git
```