New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

nativescript-oauth2

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nativescript-oauth2 - npm Package Compare versions

Comparing version 1.1.4 to 1.2.0

2

package.json
{
"name": "nativescript-oauth2",
"version": "1.1.4",
"version": "1.2.0",
"description": "OAuth 2 login for NativeScript.",

@@ -5,0 +5,0 @@ "main": "oauth",

@@ -91,3 +91,4 @@ # OAuth 2 Plugin for NativeScript

- [TypeScript Demo App](https://github.com/alexziskind1/nativescript-oauth2/tree/master/demo)
- [Angular Demo App (coming soon)](https://github.com/alexziskind1/nativescript-oauth2/tree/master/demo-angular)
- [Angular Demo App](https://github.com/alexziskind1/nativescript-oauth2/tree/master/demo-angular)
- [Vue Demo App](https://github.com/alexziskind1/nativescript-oauth2/tree/master/demo-vue)

@@ -94,0 +95,0 @@ ### Bootstrapping

@@ -13,3 +13,3 @@ "use strict";

params["redirect_uri"] = provider.options.redirectUri;
params["scope"] = provider.options.scopes;
params["scope"] = provider.options.scopes.join(' ');
params["response_mode"] = "query";

@@ -51,3 +51,3 @@ params["state"] = "abcd";

params["client_secret"] = provider.options.clientSecret;
params["scope"] = provider.options.scopes;
params["scope"] = provider.options.scopes.join(' ');
params["state"] = "abcd";

@@ -54,0 +54,0 @@ var pararmsStr = querystring.stringify(params);

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc