mirror of
https://github.com/LukeHagar/plex-api-oauth.git
synced 2025-12-06 04:20:40 +00:00
final deprecation PR
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
# plex-api-oauth
|
||||
|
||||
# THIS PACKAGE IS DEPRECATED IN FAVOR OF https://github.com/LukeHagar/plexjs
|
||||
|
||||
An NPM Module designed to make Plex Media Server and plex.tv API calls easier to implement in JavaScript and React projects
|
||||
|
||||
<img src="https://img.shields.io/lgtm/grade/javascript/github/LukeHagar/plex-api-oauth" /> <img src="https://img.shields.io/npm/dw/plex-api-oauth" />
|
||||
@@ -8,8 +10,6 @@ https://www.npmjs.com/package/plex-api-oauth
|
||||
|
||||
This is a JavaScript Module written to take the OAuth Module written by @Dmbob https://github.com/Dmbob/plex-oauth and incorporate it into a front end friend frame work to make development of Plex API Based applications better
|
||||
|
||||
# Interactive API Explorer: https://lukehagar.com/projects/plex-api-oauth
|
||||
|
||||
## How to Use
|
||||
|
||||
Examples Assume React Syntax
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "plex-api-oauth",
|
||||
"version": "1.2.9",
|
||||
"version": "1.3.0",
|
||||
"description": "An NPM Module designed to make Plex Media Server and plex.tv API calls easier to implement in JavaScript projects",
|
||||
"main": "./src/index.js",
|
||||
"keywords": [
|
||||
|
||||
@@ -3,6 +3,10 @@ import { v4 } from "uuid";
|
||||
import axios from "axios";
|
||||
import qs from "qs";
|
||||
|
||||
console.log(
|
||||
"THIS PACKAGE IS DEPRECATED. USE `@lukehagar/plexjs` https://github.com/LukeHagar/plexjs INSTEAD"
|
||||
);
|
||||
|
||||
export function CreatePlexClientInformation({
|
||||
clientIdentifier = v4(),
|
||||
product = FnBrowserDetect(),
|
||||
|
||||
@@ -1,3 +1,7 @@
|
||||
console.log(
|
||||
"THIS PACKAGE IS DEPRECATED. USE `@lukehagar/plexjs` https://github.com/LukeHagar/plexjs INSTEAD"
|
||||
);
|
||||
|
||||
export {
|
||||
CreatePlexClientInformation,
|
||||
PlexLogin,
|
||||
|
||||
Reference in New Issue
Block a user