├── .gitignore ├── LICENSE.md ├── README.md ├── example ├── css │ └── index.css ├── index.html └── js │ └── index.js ├── package.json ├── plugin.xml ├── src ├── android │ ├── Weibo.java │ ├── WeiboShareCallback.java │ ├── libs │ │ ├── arm64-v8a │ │ │ └── libweibosdkcore.so │ │ ├── armeabi-v7a │ │ │ └── libweibosdkcore.so │ │ ├── armeabi │ │ │ └── libweibosdkcore.so │ │ ├── mips │ │ │ └── libweibosdkcore.so │ │ ├── mips64 │ │ │ └── libweibosdkcore.so │ │ ├── x86 │ │ │ └── libweibosdkcore.so │ │ └── x86_64 │ │ │ └── libweibosdkcore.so │ └── weiboSDKCore_3.1.4.jar └── ios │ ├── WBHttpRequest+WeiboGame.h │ ├── WBHttpRequest+WeiboShare.h │ ├── WBHttpRequest+WeiboToken.h │ ├── WBHttpRequest+WeiboUser.h │ ├── WBHttpRequest.h │ ├── WBSDKBasicButton.h │ ├── WBSDKCommentButton.h │ ├── WBSDKRelationshipButton.h │ ├── WeiboSDK+Statistics.h │ ├── WeiboSDK.bundle │ ├── images │ │ ├── alert_error_icon@2x.png │ │ ├── alert_success_icon@2x.png │ │ ├── close.png │ │ ├── close@2x.png │ │ ├── common_button_big_blue@2x.png │ │ ├── common_button_big_blue_disable@2x.png │ │ ├── common_button_big_blue_highlighted@2x.png │ │ ├── common_button_white.png │ │ ├── common_button_white@2x.png │ │ ├── common_button_white_highlighted.png │ │ ├── common_button_white_highlighted@2x.png │ │ ├── common_icon_arrow@2x.png │ │ ├── compose_keyboardbutton_background.png │ │ ├── compose_keyboardbutton_background@2x.png │ │ ├── compose_toolbar_background.png │ │ ├── compose_toolbar_background@2x.png │ │ ├── empty_failed.png │ │ ├── empty_failed@2x.png │ │ ├── login_background@2x.png │ │ ├── login_country_background@2x.png │ │ ├── login_country_background_highlighted@2x.png │ │ ├── navigationbar_background.png │ │ ├── navigationbar_background@2x.png │ │ ├── navigationbar_background_os7.png │ │ ├── navigationbar_background_os7@2x.png │ │ ├── progresshud_background@2x.png │ │ ├── sdk_weibo_logo.png │ │ ├── sdk_weibo_logo@2x.png │ │ ├── sdk_weibo_logo@3x.png │ │ ├── timeline_relationship_icon_addattention.png │ │ ├── timeline_relationship_icon_addattention@2x.png │ │ ├── timeline_relationship_icon_addattention@3x.png │ │ ├── timeline_relationship_icon_attention.png │ │ ├── timeline_relationship_icon_attention@2x.png │ │ ├── timeline_relationship_icon_attention@3x.png │ │ ├── verify_code_button@2x.png │ │ ├── verify_code_button@3x.png │ │ ├── verify_code_button_highlighted@2x.png │ │ └── verify_code_button_highlighted@3x.png │ └── others │ │ ├── countryList │ │ └── mfp.cer │ ├── WeiboSDK.h │ ├── WeiboUser.h │ ├── libWeiboSDK.a │ ├── weibo.h │ └── weibo.m └── www └── weibo.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/README.md -------------------------------------------------------------------------------- /example/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/example/css/index.css -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/example/index.html -------------------------------------------------------------------------------- /example/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/example/js/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/Weibo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/Weibo.java -------------------------------------------------------------------------------- /src/android/WeiboShareCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/WeiboShareCallback.java -------------------------------------------------------------------------------- /src/android/libs/arm64-v8a/libweibosdkcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/libs/arm64-v8a/libweibosdkcore.so -------------------------------------------------------------------------------- /src/android/libs/armeabi-v7a/libweibosdkcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/libs/armeabi-v7a/libweibosdkcore.so -------------------------------------------------------------------------------- /src/android/libs/armeabi/libweibosdkcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/libs/armeabi/libweibosdkcore.so -------------------------------------------------------------------------------- /src/android/libs/mips/libweibosdkcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/libs/mips/libweibosdkcore.so -------------------------------------------------------------------------------- /src/android/libs/mips64/libweibosdkcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/libs/mips64/libweibosdkcore.so -------------------------------------------------------------------------------- /src/android/libs/x86/libweibosdkcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/libs/x86/libweibosdkcore.so -------------------------------------------------------------------------------- /src/android/libs/x86_64/libweibosdkcore.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/libs/x86_64/libweibosdkcore.so -------------------------------------------------------------------------------- /src/android/weiboSDKCore_3.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/android/weiboSDKCore_3.1.4.jar -------------------------------------------------------------------------------- /src/ios/WBHttpRequest+WeiboGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WBHttpRequest+WeiboGame.h -------------------------------------------------------------------------------- /src/ios/WBHttpRequest+WeiboShare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WBHttpRequest+WeiboShare.h -------------------------------------------------------------------------------- /src/ios/WBHttpRequest+WeiboToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WBHttpRequest+WeiboToken.h -------------------------------------------------------------------------------- /src/ios/WBHttpRequest+WeiboUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WBHttpRequest+WeiboUser.h -------------------------------------------------------------------------------- /src/ios/WBHttpRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WBHttpRequest.h -------------------------------------------------------------------------------- /src/ios/WBSDKBasicButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WBSDKBasicButton.h -------------------------------------------------------------------------------- /src/ios/WBSDKCommentButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WBSDKCommentButton.h -------------------------------------------------------------------------------- /src/ios/WBSDKRelationshipButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WBSDKRelationshipButton.h -------------------------------------------------------------------------------- /src/ios/WeiboSDK+Statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK+Statistics.h -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/alert_error_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/alert_error_icon@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/alert_success_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/alert_success_icon@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/close.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/close@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/common_button_big_blue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/common_button_big_blue@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/common_button_big_blue_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/common_button_big_blue_disable@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/common_button_big_blue_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/common_button_big_blue_highlighted@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/common_button_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/common_button_white.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/common_button_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/common_button_white@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/common_button_white_highlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/common_button_white_highlighted.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/common_button_white_highlighted@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/common_icon_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/common_icon_arrow@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/compose_keyboardbutton_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/compose_keyboardbutton_background.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/compose_keyboardbutton_background@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/compose_toolbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/compose_toolbar_background.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/compose_toolbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/compose_toolbar_background@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/empty_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/empty_failed.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/empty_failed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/empty_failed@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/login_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/login_background@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/login_country_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/login_country_background@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/login_country_background_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/login_country_background_highlighted@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/navigationbar_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/navigationbar_background.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/navigationbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/navigationbar_background@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/navigationbar_background_os7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/navigationbar_background_os7.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/navigationbar_background_os7@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/progresshud_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/progresshud_background@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/sdk_weibo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/sdk_weibo_logo.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/sdk_weibo_logo@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/sdk_weibo_logo@3x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_addattention.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_addattention@3x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_attention.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_attention@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/timeline_relationship_icon_attention@3x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/verify_code_button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/verify_code_button@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/verify_code_button@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/verify_code_button@3x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/verify_code_button_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/verify_code_button_highlighted@2x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/images/verify_code_button_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/images/verify_code_button_highlighted@3x.png -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/others/countryList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/others/countryList -------------------------------------------------------------------------------- /src/ios/WeiboSDK.bundle/others/mfp.cer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.bundle/others/mfp.cer -------------------------------------------------------------------------------- /src/ios/WeiboSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboSDK.h -------------------------------------------------------------------------------- /src/ios/WeiboUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/WeiboUser.h -------------------------------------------------------------------------------- /src/ios/libWeiboSDK.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/libWeiboSDK.a -------------------------------------------------------------------------------- /src/ios/weibo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/weibo.h -------------------------------------------------------------------------------- /src/ios/weibo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/src/ios/weibo.m -------------------------------------------------------------------------------- /www/weibo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BelinChung/cordova-plugin-weibo/HEAD/www/weibo.js --------------------------------------------------------------------------------