Skip to content

Commit c091c39

Browse files
authored
update plexurl
It appears plex is doing away with the plexapp.com url. It no longer has a valid SAN cert for that domain as it redirects to plex.tv now. Update myplex.py to reflect new signin URL.
1 parent 61ede66 commit c091c39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plexapi/myplex.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class MyPlexAccount(PlexObject):
2929
timeout (int): timeout in seconds on initial connect to myplex (default config.TIMEOUT).
3030
3131
Attributes:
32-
SIGNIN (str): 'https://my.plexapp.com/users/sign_in.xml'
32+
SIGNIN (str): 'https://plex.tv/users/sign_in.xml'
3333
key (str): 'https://plex.tv/users/account'
3434
authenticationToken (str): Unknown.
3535
certificateVersion (str): Unknown.
@@ -67,7 +67,7 @@ class MyPlexAccount(PlexObject):
6767
REMOVEINVITE = 'https://plex.tv/api/invites/requested/{userId}?friend=0&server=1&home=0' # delete
6868
REQUESTED = 'https://plex.tv/api/invites/requested' # get
6969
REQUESTS = 'https://plex.tv/api/invites/requests' # get
70-
SIGNIN = 'https://my.plexapp.com/users/sign_in.xml' # get with auth
70+
SIGNIN = 'https://plex.tv/users/sign_in.xml' # get with auth
7171
WEBHOOKS = 'https://plex.tv/api/v2/user/webhooks' # get, post with data
7272
# Key may someday switch to the following url. For now the current value works.
7373
# https://plex.tv/api/v2/user?X-Plex-Token={token}&X-Plex-Client-Identifier={clientId}

0 commit comments

Comments
 (0)