Flutter版新浪微博登录/分享
Go to file
2019-05-29 18:28:22 +08:00
android 图文分享 & 大图分享 2019-05-29 18:19:41 +08:00
example 图文分享 & 大图分享 2019-05-29 18:19:41 +08:00
ios 图文分享 & 大图分享 2019-05-29 18:19:41 +08:00
lib 优化 2019-05-29 18:20:22 +08:00
test xxx 2019-05-17 12:11:53 +08:00
.drone.yml 优化 2019-05-24 13:01:21 +08:00
.gitattributes 清理历史 2019-03-05 12:18:08 +08:00
.gitignore 清理历史 2019-03-05 12:18:08 +08:00
.metadata 清理历史 2019-03-05 12:18:08 +08:00
analysis_options.yaml 升级 flutter 1.2.1 2019-03-19 17:27:02 +08:00
CHANGELOG.md CHANGELOG 2019-05-29 18:28:22 +08:00
LICENSE 清理历史 2019-03-05 12:18:08 +08:00
pubspec.yaml CHANGELOG 2019-05-29 18:28:22 +08:00
README.md 图文分享 & 大图分享 2019-05-29 18:19:41 +08:00

fake_weibo

Build Status Codecov GitHub Tag Pub Package License

flutter版新浪微博SDK

fake 系列 libraries

dart/flutter 私服

docs

android

# 不需要做任何额外接入工作
# 混淆已打入 Library随 Library 引用,自动添加到 apk 打包混淆

ios

在Xcode中选择你的工程设置项选中“TARGETS”一栏在“info”标签栏的“URL type“添加“URL scheme”为你所注册的应用程序id

URL Types
weibosdk: identifier=com.weibo schemes=wb${appKey}
iOS 9系统策略更新限制了http协议的访问此外应用需要在“Info.plist”中将要使用的URL Schemes列为白名单才可正常检查其他应用是否安装。
<key>LSApplicationQueriesSchemes</key>
<array>
    <string>sinaweibo</string>
    <string>sinaweibohd</string>
    <string>weibosdk</string>
    <string>weibosdk2.5</string>
</array>
<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
    <key>NSExceptionDomains</key>
    <dict>
        <key>sina.com.cn</key>
        <dict>
            <key>NSIncludesSubdomains</key>
            <true/>
            <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
            <true/>
            <key>NSExceptionMinimumTLSVersion</key>
            <string>TLSv1.0</string>
            <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
            <false/>
        </dict>
    </dict>
</dict>

flutter

  • snapshot
dependencies:
  fake_weibo:
    git:
      url: https://github.com/v7lin/fake_weibo.git
  • release
dependencies:
  fake_weibo: ^${latestTag}
  • example

示例

Getting Started

This project is a starting point for a Flutter plug-in package, a specialized package that includes platform-specific implementation code for Android and/or iOS.

For help getting started with Flutter, view our online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.