npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@dongxii/react-native-weibo

v1.0.5

Published

## Getting started

Downloads

4

Readme

react-native-weibo

Getting started

$ yarn add @dongxii/react-native-weibo

Mostly automatic installation

$ react-native link @dongxii/react-native-weibo

Manual installation

iOS

  1. In XCode, in the project navigator, right click LibrariesAdd Files to [your project's name]
  2. Go to node_modules@dongxiireact-native-weibo and add RNWeibo.xcodeproj
  3. In XCode, in the project navigator, select your project. Add libRNWeibo.a to your project's Build PhasesLink Binary With Libraries
  4. Run your project (Cmd+R)<

Android

  1. Open up android/app/src/main/java/[...]/MainApplication.java
  • Add import com.dongxii.library.weibo.RNWeiboPackage; to the imports at the top of the file
  • Add new RNWeiboPackage() to the list returned by the getPackages() method
  1. Append the following lines to android/settings.gradle:
    include ':@dongxii/react-native-weibo'
    project(':@dongxii/react-native-weibo').projectDir = new File(rootProject.projectDir, '../node_modules/@dongxii/react-native-weibo/android')
  2. Insert the following lines inside the dependencies block in android/app/build.gradle:
    compile project(':@dongxii/react-native-weibo')

Additional steps

iOS

  1. Install the weibo iOS SDK using cocoapods
pod "Weibo_SDK", :git => "https://github.com/sinaweibosdk/weibo_ios_sdk.git"
  1. In XCode, in the project navigator, select your project, go to the Info-Tab ➜ URL Types and add a new URL type with Identifier sina and schema wb[YOUR APP KEY].
  2. Add sinaweibohd, sinaweibo, weibosdk and weibosdk2.5 as LSApplicationQueriesSchemes in your Info.plist file.
  3. Due to the limitation of App Transport Security(ATS) on http in iOS9.0, you need to add the following exception to your Info.plist file:
<dict>
  <key>NSExceptionDomains</key>
  <dict>
			<key>localhost</key>
			<dict>
				<key>NSExceptionAllowsInsecureHTTPLoads</key>
				<true/>
			</dict>
			+ <key>sina.cn</key>
			+ <dict>
				+ <key>NSIncludesSubdomains</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
				+ <false/>
				+ <key>NSExceptionMinimumTLSVersion</key>
				+ <string>TLSv1.0</string>
			+ </dict>
			+ <key>weibo.cn</key>
			+ <dict>
				+ <key>NSIncludesSubdomains</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
				+ <false/>
				+ <key>NSExceptionMinimumTLSVersion</key>
				+ <string>TLSv1.0</string>
			+ </dict>
			+ <key>weibo.com</key>
			+ <dict>
				+ <key>NSIncludesSubdomains</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
				+ <false/>
				+ <key>NSExceptionMinimumTLSVersion</key>
				+ <string>TLSv1.0</string>
			+ </dict>
			+ <key>sinaimg.cn</key>
			+ <dict>
				+ <key>NSIncludesSubdomains</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
				+ <false/>
				+ <key>NSExceptionMinimumTLSVersion</key>
				+ <string>TLSv1.0</string>
			+ </dict>
			+ <key>sinajs.cn</key>
			+ <dict>
				+ <key>NSIncludesSubdomains</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
				+ <false/>
				+ <key>NSExceptionMinimumTLSVersion</key>
				+ <string>TLSv1.0</string>
			+ </dict>
			+ <key>sina.com.cn</key>
			+ <dict>
				+ <key>NSIncludesSubdomains</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionAllowsInsecureHTTPLoads</key>
				+ <true/>
				+ <key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
				+ <false/>
				+ <key>NSExceptionMinimumTLSVersion</key>
				+ <string>TLSv1.0</string>
			+ </dict>
  1. In AppDelegate.m add the following code:
+ #import <React/RCTLinkingManager.h>
[...]
+ - (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
+		return [RCTLinkingManager application:application openURL:url sourceApplication:sourceApplication annotation:annotation];
+	}

Android

  1. Edit your android/build.gradle to look like this:
allprojects {
  repositories {
    mavenLocal()
    jcenter()
    maven {
      // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
      url "$rootDir/../node_modules/react-native/android"
    }
    + flatDir{
    +		dirs "$rootDir/../node_modules/@dongxii/react-native-weibo/android/libs"
    + }
  }
}

Usage

import RNWeibo from '@dongxii/react-native-weibo'

RNWeibo.init({
  appKey: 'YOUR_APP_KEY',
  scope: 'SCOPE', // e.g. 'all'
  redirectURI: 'https://example.com/redirect...',
})

RNWeibo.isWeiboAppInstalled().then(isInstalled => {
  console.log(isInstalled)
})

RNWeibo.authenticate()
  .then(response => {
    console.log(response)
  })
  .catch(error => {
    console.log(response)
  })

Run the example

  1. $ cd example && yarn install
  2. $ cd ios && pod install
  3. $ cd .. && react-native run-ios