Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to sync [Unable to retrieve account details from plex.tv] #611

Open
arabcoders opened this issue Oct 6, 2021 · 105 comments · May be fixed by #615
Open

Unable to sync [Unable to retrieve account details from plex.tv] #611

arabcoders opened this issue Oct 6, 2021 · 105 comments · May be fixed by #615

Comments

@arabcoders
Copy link

arabcoders commented Oct 6, 2021

Hello,

Syncing from plex stopped few days ago, while still working in jellyfin. i searched the logs and it seems for reason the plugin is unable to get the plex account.

2021-10-06 14:45:34,284 - plugin.models.m_plex.account     (7fcf495dab38) :  INFO (plugin.models.m_plex.account:118) - Refreshing plex account: <PlexAccount username: u'my-username'>
2021-10-06 14:45:34,798 - plugin.models.m_plex.account     (7fcf495dab38) :  WARNING (plugin.models.m_plex.account:126) - Unable to retrieve account details from plex.tv (status_code: 422)

and this message kept on being repeated every time the server tries to sync.

[17 minutes ago] AccountAuthenticationError: Plex account is missing the server token

things 1 did.

  1. remove every trace of the plugin and reinstall. - failed same issue
  2. disclaim the server and reclaim. - nope same issue
  3. re-authorize the plugin via trakt.tv.
@arabcoders
Copy link
Author

arabcoders commented Oct 6, 2021

The easy way

download the fork from https://github.com/Cornishman/Plex-Trakt-Scrobbler/tree/scrobble_fix_with_PlexOnlineToken_fix to fix the issue.

The hard way

Ok for some reason this issue has blown up and there is lots of requests on how to do this thing. I'll try to gather the information in easy to consume way. The temp fix involve editing file in traktv.bundle directory.

X-Plex-Token

First step is to get your X-Plex-Token. For how to find it please visit this link.
https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/

File Location

The file location depends on how you installed plex.

On regular installation please refers to this page to find Plex data directory.
https://support.plex.tv/articles/202915258-where-is-the-plex-media-server-data-directory-located/

Synology

on "Synology package"
The files located in the Plex shared folder. Open File station and go to "Plex Media Server/Plug-ins/Trakttv.bundle/Contents/Libraries/Shared/plugin/modules/migrations/account.py" via @coreyp93

Others

In General you need to edit this file "Trakttv.bundle/Contents/Libraries/Shared/plugin/modules/migrations/account.py"

Editing the File

around line 241 look for

env_token = os.environ.get('PLEXTOKEN')

There is two ways you can fix this issue if you know what environment variable is choose option 2, if you dont understand what is environment variable is choose option 1.

Change the line to

Option 1

        #env_token = os.environ.get('PLEXTOKEN')
        env_token = 'Your X-Plex-Token here'

Option 2

        #env_token = os.environ.get('PLEXTOKEN')
        env_token = os.environ.get('PLEX_SERVER_TOKEN')

be mindful that python uses whitespace as indentation level, so make sure replaced code matches the indentation level. via @regystro

add PLEX_SERVER_TOKEN with your X-Plex-Token as value. in whatever system or container you use. i.e. unraid custom ENV Vars or windows or docker-compose, or whatever system you use.

finally

After editing the file and making sure the changes saved. restart plex.

@Gandrushka
Copy link

i have the same issue, but this did't helped me. maybe because i don't use docker

@arabcoders
Copy link
Author

arabcoders commented Oct 8, 2021

i have the same issue, but this did't helped me. maybe because i don't use docker

I use docker mostly, but i think you can do same steps and instead of editing docker-compose.yaml do export PLEX_SERVER_TOKEN=YOUR_PLEX_TOKEN in shell that runs plex and then restart the plex process. if you can describe how you are running PMS i may be able to help. if it's windows you have to add ENV globally and restart the PMS process.

or you can just hardcode the token

so instead of

#env_token = os.environ.get('PLEXTOKEN')
env_token = os.environ.get('PLEX_SERVER_TOKEN')

you do

#env_token = os.environ.get('PLEXTOKEN')
env_token = 'YOUR-PLEX-TOKEN'

PS, i dont recommend hardcoding the token into the code, but it's a quick work around until the plugin is updated.

@Gandrushka
Copy link

So i tried to hardcode the token, no result at all - it just deletes the Trakt plugin from unofficial appstore

Tried to leave it as is after reinstall - now only movies sync with Trakt - both play status and watched. As for shows - nothing: no playing status, no scrobbling.

@Gandrushka
Copy link

The workaround for shows is simple - use original titles. I used translated ones, but it didn't worked for me. And with original titles everything works

@pochacho99
Copy link

The workaround for shows is simple - use original titles. I used translated ones, but it didn't worked for me. And with original titles everything works

I am having this problem also, just suddenly stopped working, getting error message "Plex account is missing the server token". @Gandrushka by original titles, do you mean the English titles? There is an option in the TV Series Agent to choose Original Titles, but this returns movies and shows in their native language (same as your translated above?)?

@arabcoders
Copy link
Author

The workaround for shows is simple - use original titles. I used translated ones, but it didn't worked for me. And with original titles everything works

I am having this problem also, just suddenly stopped working, getting error message "Plex account is missing the server token". @Gandrushka by original titles, do you mean the English titles? There is an option in the TV Series Agent to choose Original Titles, but this returns movies and shows in their native language (same as your translated above?)?

I Don't think @Gandrushka problem is the same as me or you. so you can try the fix i posted it may help.

@Gandrushka
Copy link

but this returns movies and shows in their native language

yep, that what i thought for the first time. but then i tried it with "Squid game", episodes and series names changed to Korean and Trakt seems to not see it again.

So my theory about original titles was wrong, now I'm using English for the library language and Trakt works

@JBeresford
Copy link

JBeresford commented Oct 13, 2021

I was able to do temp fix until there there is an official way.

Open  File "Application Support/Plex Media Server/Plug-ins/Trakttv.bundle/Contents/Libraries/Shared/plugin/modules/migrations/account.py"

around line 241 look for

env_token = os.environ.get('PLEXTOKEN')

Change the line to

#env_token = os.environ.get('PLEXTOKEN')
env_token = os.environ.get('PLEX_SERVER_TOKEN')

Add

PLEX_SERVER_TOKEN=YOUR_PLEX_TOKEN 

in your docker-compose.yaml

save than restart plex container. 

For some reason Plex is not giving the correct token in "PLEXTOKEN" ENV it was giving something like local-GUID token which is failing to authenticate against the API.

after doing this fix, i was able to to both push and pull updates.

I suspect that this was introduced in Plex version: 1.24.4.5081 - as following me updating to this version this morning on my Windows machine I ran into the same issue as described.
I've done a search through all the Plex files and there doesn't seem to be anywhere in plain text they set that variable (they read from it a few times), they must be assigning it at runtime from a compiled file.

Can confirm that changing the environment variable check in the plugin resolved this for me too

@abiacco
Copy link

abiacco commented Oct 13, 2021

I'm running 5081 beta also on my test/backup server where this is happening (i pull watched statuses from my prod server which is pushing statuses fine on 5033).
I put the plex token in /etc/systemd/system/plexmediaserver.service.d/override.conf as
Environment="PLEXTOKEN=<token>"
and that allowed me to do a pull ok for now. I just run the .deb version

@Skyline404
Copy link

I was able to do temp fix until there there is an official way.

Open  File "Application Support/Plex Media Server/Plug-ins/Trakttv.bundle/Contents/Libraries/Shared/plugin/modules/migrations/account.py"

around line 241 look for

env_token = os.environ.get('PLEXTOKEN')

Change the line to

#env_token = os.environ.get('PLEXTOKEN')
env_token = os.environ.get('PLEX_SERVER_TOKEN')

Add

PLEX_SERVER_TOKEN=YOUR_PLEX_TOKEN 

in your docker-compose.yaml

save than restart plex container. 

For some reason Plex is not giving the correct token in "PLEXTOKEN" ENV it was giving something like local-GUID token which is failing to authenticate against the API.

after doing this fix, i was able to to both push and pull updates.

Great fix, thx !

@pochacho99
Copy link

The workaround for shows is simple - use original titles. I used translated ones, but it didn't worked for me. And with original titles everything works

I am having this problem also, just suddenly stopped working, getting error message "Plex account is missing the server token". @Gandrushka by original titles, do you mean the English titles? There is an option in the TV Series Agent to choose Original Titles, but this returns movies and shows in their native language (same as your translated above?)?

I Don't think @Gandrushka problem is the same as me or you. so you can try the fix i posted it may help.

Thanks, this fix works! Hope the plugin will be updated soon.

@sickyd
Copy link

sickyd commented Oct 15, 2021

Cheers, changing the environment variable and line in the code worked on Windows PMS setup.

@rg9400
Copy link
Contributor

rg9400 commented Oct 15, 2021

Can someone confirm exactly which features are broken with this change? The devs have indicated that this was intentional and the token now being exposed is valid, it just can't be used via the API that is being leveraged by the plugin (have to use PMS API directly instead).

I seem to still be able to scrobble and push playback progress fine. So is the issue pulling data? Doing full syncs? Lists or collections?

@TobiasRuano
Copy link

@rg9400 for me it was completly broken. Nothing worked. No scrobble, collection (push), ratings (pull, push), watch status (pull, push).

Setting the ENV solve all this.

@arabcoders
Copy link
Author

@rg9400 for me it was completly broken. Nothing worked. No scrobble, collection (push), ratings (pull, push), watch status (pull, push).

Setting the ENV solve all this.

likewise the plugin was completely broken with the messages i attached. for some weird reason sometimes it works for few days then it would stop working and give this random local-guid token with ofc cant cant be used with plex api for some reason.

@olliebean
Copy link

I'm seeing the same error in the logs ("Plex account is missing the server token"), but automatic syncing and scrobbling still seem to be working fine. The only reason I realised there was a problem was because I tried to access the plugin via Kitana to do a manual sync.

@bakes82
Copy link

bakes82 commented Oct 19, 2021

Can someone confirm exactly which features are broken with this change? The devs have indicated that this was intentional and the token now being exposed is valid, it just can't be used via the API that is being leveraged by the plugin (have to use PMS API directly instead).

I seem to still be able to scrobble and push playback progress fine. So is the issue pulling data? Doing full syncs? Lists or collections?

It seems like even though there is an error its works until you prob install new version or something. Mine was working with error until an update. Hard coding the plex token worked.

@rg9400
Copy link
Contributor

rg9400 commented Oct 19, 2021

yeah mine broke today as well. But now here's the issue. Using the PMS API is not a small change AFAIK, and grabbing the token in some other automated fashion also looks like it will be complicated. Anyone have any ideas for a proper fix? Because it's beyond me. This method works but is not ideal.

@arabcoders
Copy link
Author

yeah mine broke today as well. But now here's the issue. Using the PMS API is not a small change AFAIK, and grabbing the token in some other automated fashion also looks like it will be complicated. Anyone have any ideas for a proper fix? Because it's beyond me. This method works but is not ideal.

Honestly, if possible just add a new field in settings for plex token and continue as usual. until you feel like rewriting the plugin to use the PMS API.

@olliebean
Copy link

Perhaps someone could explain how to get the plex token? I found two methods on the Plex website: one (https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/) is by reading the xml of a library item, but this page says the token is "valid temporarily," and presumably we need one that is valid permanently. The other (https://forums.plex.tv/t/authenticating-with-plex/609370) is a complicated explanation of how a 3rd party app (or presumably a plugin such as this one) could get the token, but this doesn't seem to be a method that an end user can easily use.

@OttoWerse
Copy link

For me personally, removing all authetification from the first account/home user in the plugin configuration, and then adding the previously used plex and trakt auth to a new user is currently a good workaround. It's not pretty, but it works so far.

So far I have only had issues on the first (undeletable) user, all my home users have had absolutley no syncing issues over the past few months, as it turns out. So just do not use the default plugin user at all to avoid errors I would say.

@olliebean
Copy link

For me personally, removing all authetification from the first account/home user in the plugin configuration, and then adding the previously used plex and trakt auth to a new user is currently a good workaround. It's not pretty, but it works so far.

How do I do that? I only have one user; I tried adding another, but I couldn't see any options in the plugin configuration to set different details for a different user, and when I switched to the new user I couldn't access the plugin configuration settings at all.

@OttoWerse
Copy link

For me personally, removing all authetification from the first account/home user in the plugin configuration, and then adding the previously used plex and trakt auth to a new user is currently a good workaround. It's not pretty, but it works so far.

How do I do that? I only have one user; I tried adding another, but I couldn't see any options in the plugin configuration to set different details for a different user, and when I switched to the new user I couldn't access the plugin configuration settings at all.

You need to set the mapping first, so that each user will be mapped to their corresponding Trakt account:
https://github.com/trakt/Plex-Trakt-Scrobbler/wiki/FAQ---Scrobbling

Configuration does not happen inside of Plex Plugins for other users (only the main, undeletable one, which has always been buggy) you have to do it in the Configuration of the Plugin under "Accounts".

@olliebean
Copy link

In the absence of a step-by-step guide, I think I'd better leave well alone for now and hope the plugin gets updated with a fix for this issue before it stops working entirely for me. Absolutely no idea what I'm supposed to be doing on that configuration page.

@arabcoders
Copy link
Author

Perhaps someone could explain how to get the plex token? I found two methods on the Plex website: one (https://support.plex.tv/articles/204059436-finding-an-authentication-token-x-plex-token/) is by reading the xml of a library item, but this page says the token is "valid temporarily," and presumably we need one that is valid permanently. The other (https://forums.plex.tv/t/authenticating-with-plex/609370) is a complicated explanation of how a 3rd party app (or presumably a plugin such as this one) could get the token, but this doesn't seem to be a method that an end user can easily use.

I didn't notice the plex token changing, unless i disclaim the server and re-claim it. so you can follow the steps i posted to fix it even if plex token is temporary.

@djnield
Copy link

djnield commented Oct 22, 2021

For me personally, removing all authetification from the first account/home user in the plugin configuration, and then adding the previously used plex and trakt auth to a new user is currently a good workaround. It's not pretty, but it works so far.

So far I have only had issues on the first (undeletable) user, all my home users have had absolutley no syncing issues over the past few months, as it turns out. So just do not use the default plugin user at all to avoid errors I would say.

Think I understood about creating a second user and using that over the default..

Just clarify, after doing this, does the settings in the plex app still need to have a pin set?

@oliverjhyde
Copy link

I tried the hardcoding the key but that just caused the plugin to not show in settings or Kitana so I undid that.
Going here and disconnecting and reconnecting Plex has everything working again for me.

@JourneyOver
Copy link

JourneyOver commented Oct 23, 2021

Going here and disconnecting and reconnecting Plex has everything working again for me.

This is what worked for me as well.

Edit: Though it doesn't seem to be a long term fix, just temporary as it seems to eventually throw the Error Plex account is missing the server token error again.

@arabcoders
Copy link
Author

OK,

I understand, I will do the series synch manually from now on till an updated plugin version comes out.

I also have the problem with the smart tv PLEX app which is no longer log in due the server security changes PLEX has applied for the older SMSUNG smart tv's but that's not worry me at all, synch is my top listed problem.

Thanks for the help, appreciated.

No problem. you don't have to manually sync after applying the fix its only for items that was queued to be synced before applying the fix.

And for samsung plex app i think you have to disable ssl in server settings.

@CBarbas
Copy link

CBarbas commented Dec 12, 2021

Do

you mean that new series episodes at my library will synch, I have just added 2 or 3, I'll report back about that.
About the ssl setting, its not only that as I have read which by the way wasn't active by me, still isn't or other which have the problem since last PLEX version.

@arabcoders
Copy link
Author

Do

you mean that new series episodes at my library will synch, I have just added 2 or 3, I'll report back about that.

About the ssl setting, its not only that as I have read which by the way wasn't active by me, still isn't or other which have the problem since last PLEX version.

the default SSL setting is preferred for Plex server you have to explicitly disable ssl to make old client works.

@CBarbas
Copy link

CBarbas commented Dec 12, 2021

Where should I change it, at PLEX via the web browser, settings/network, right?
Will that be enough?

@arabcoders
Copy link
Author

Where should I change it, at PLEX via the web browser, settings/network, right?

Will that be enough?

i think so yeah check

https://forums.plex.tv/t/important-information-about-plex-for-smart-tvs-after-september-30-2021/746506

@rg9400
Copy link
Contributor

rg9400 commented Dec 12, 2021

To fix this issue, you just need to use the version in this PR. It's unclear when it will be merged since the maintainers aren't around. It grabs the token automatically from the settings without any further user intervention needed.

#615

@CBarbas
Copy link

CBarbas commented Dec 12, 2021

Where should I change it, at PLEX via the web browser, settings/network, right?
Will that be enough?

i think so yeah check

https://forums.plex.tv/t/important-information-about-plex-for-smart-tvs-after-september-30-2021/746506

My settings are like those at the post but what is happening, not only be me, is that the app doesnt provide a PIN to link the account.

Check the links,
https://forums.plex.tv/t/plex-tv-link-not-generating-code-on-samsung-smart-tv/763431
https://forums.plex.tv/t/samsung-tv-cannot-connect-to-plex/650100/8

@jeff15110168
Copy link

Hello - I was in the process of replacing my trakttv.bundle to fix the TV scrobbling issue referenced here: #596 ; but now i have lost the ability to communicate with the trakt plugin using either Kitana and the web interface (http://trakt-for-plex.github.io/configuration/#/connect). Does anyone know how to fix this using Unraid with Docker (Plex and Kitana are separately installed containers in Docker)?

image

image

@jeff15110168
Copy link

jeff15110168 commented Dec 13, 2021

Hello - I was in the process of replacing my trakttv.bundle to fix the TV scrobbling issue referenced here: #596 ; but now i have lost the ability to communicate with the trakt plugin using either Kitana and the web interface (http://trakt-for-plex.github.io/configuration/#/connect). Does anyone know how to fix this using Unraid with Docker (Plex and Kitana are separately installed containers in Docker)?

image

image

Hmm I was able to suddenly get access to both kitana and the web interface, without doing any changes (both error messages suddenly went away). But now real-time scrobbling isn't working (no playback progress is showing in the trakt iOS app, which previously used to show when i started watching a movie). Any idea what to do to fix this? I'm using Corningman's fork of Trakt Plugin which allows for scrobbling TV shows correctly.

@CBarbas
Copy link

CBarbas commented Dec 13, 2021

OK,
I understand, I will do the series synch manually from now on till an updated plugin version comes out.
I also have the problem with the smart tv PLEX app which is no longer log in due the server security changes PLEX has applied for the older SMSUNG smart tv's but that's not worry me at all, synch is my top listed problem.
Thanks for the help, appreciated.

No problem. you don't have to manually sync after applying the fix its only for items that was queued to be synced before applying the fix.

And for samsung plex app i think you have to disable ssl in server settings.

Hi,

You were right, new series episodes addition to the library has ynch, also movies the same, I am happy with that at the time, log in at the PLEX doesnt bothers me at all.

Out of curiosity, why old series episodes at the library will not synch?

Your fix has worked for me 100%, thank you very much.

@arabcoders
Copy link
Author

To fix this issue, you just need to use the version in this PR. It's unclear when it will be merged since the maintainers aren't around. It grabs the token automatically from the settings without any further user intervention needed.

#615

indeed that sounds better fix overall, hope it get merged at some point.

@jeff15110168 sorry i have no idea.

Hi,

You were right, new series episodes addition to the library has ynch, also movies the same, I am happy with that at the time, log in at the PLEX doesnt bothers me at all.

Out of curiosity, why old series episodes at the library will not synch?

Your fix has worked for me 100%, thank you very much.

I think it has something to do with the retry logic in traktv plugin not sure why though, Anyway doing one time manual push from kitana fixes the issue so far. I just hope there will be an alternative selfhosted sync system.

@CBarbas
Copy link

CBarbas commented Dec 13, 2021

This "kitana" plugin works also for users without subscription?
And if the answer is yes, can we use it together with the plugin from here or it will mesh things up?

Thanks

@arabcoders
Copy link
Author

This "kitana" plugin works also for users without subscription? And if the answer is yes, can we use it together with the plugin from here or it will mesh things up?

Thanks

i am talking about this app https://github.com/pannal/Kitana you can download it and it will expose hidden plugin settings.

@jeff15110168
Copy link

Hello - I was in the process of replacing my trakttv.bundle to fix the TV scrobbling issue referenced here: #596 ; but now i have lost the ability to communicate with the trakt plugin using either Kitana and the web interface (http://trakt-for-plex.github.io/configuration/#/connect). Does anyone know how to fix this using Unraid with Docker (Plex and Kitana are separately installed containers in Docker)?
image
image

Hmm I was able to suddenly get access to both kitana and the web interface, without doing any changes (both error messages suddenly went away). But now real-time scrobbling isn't working (no playback progress is showing in the trakt iOS app, which previously used to show when i started watching a movie). Any idea what to do to fix this? I'm using Corningman's fork of Trakt Plugin which allows for scrobbling TV shows correctly.

Just as an update, i installed @Cornishman's latest release mentioned in the other thread #596 (see below) and it fixed all my issues.

@jeff15110168 Try this branch instead, direct zip link. It's a separate branch that includes both my fix from here as well as the PlexOnlineToken fix pending in #615.

Let me know how you get on 👍

@gitthangbaby
Copy link

i've tried changing account.py file, disconnecting/reconnecting, updating the module, restarting Plex and the config Plex flag wasn't green and the login disappeared after just a page refresh, while plugin log showed error:
Exception raised in sync task: Plex account is missing the server token
......until i pressed SAVE button in the top right of the UI:
https://trakt-for-plex.github.io/configuration
Now i see Trakttv showing me i'm watching something and the flag in the configuration is green. Interestingly, Interval value is consistently not the same as in the plugin setting. Thanks for the advice, I didn't notice as I have this script running each day.

@CBarbas
Copy link

CBarbas commented Jan 5, 2022

Hi and Happy New Year everyone.

Today I couldn't access my PMS PC Server from my SAMSUNG TV and I was getting very mad!
I have try to remember what I have done the last time that this was occurred, searched around the internet a little, done it also by PLEX Forums to see if anything is going on.

I couldn't find something and I actually didn't changed anything at all form yesterday that it has worked fine, the only difference from the past, far past, is that I wasn't able to login due to the PLEX server security changes that has effect all SAMSUNG and more, SMART TV users with older than 2014, if I am not mistaken, tv models.

Trying to find out what's gong on all guides and posts suggested of course that you have to be logged in in order access and check if everything is OK by the server.

The problem is that I cannot do that as I have described above but still the server was accessible since yesterday for me and others I suppose with older SMART TVs.

Then I have just say why am I not trying to log in by the TV App and BAM access was enabled again, 4 PIN etc worked as it should be and I have access again.

Did they changed anything, I am curious because this problem has effected many users which have older SMART Tvs.
It seems that something like that is going on!

@wax911
Copy link

wax911 commented Jan 5, 2022

Happy to say https://github.com/Cornishman/Plex-Trakt-Scrobbler fork works like a charm

@arabcoders
Copy link
Author

Thanks All. i added link to the fork in my 2nd Q&A post to hopefully direct people there if they are not too comfortable to manually do the fix. Hopefully the core maintainers will incorporate the changes.

@adambirds
Copy link

I've reinstalled via the https://github.com/Cornishman/Plex-Trakt-Scrobbler fork. But I'm still getting the server token error. Any ideas @arabcoders?

@arabcoders
Copy link
Author

@adambirds : I've reinstalled via the https://github.com/Cornishman/Plex-Trakt-Scrobbler fork. But I'm still getting the server token error. Any ideas @arabcoders?

Sorry i have no idea why it's not working for you. try doing the manual steps on the original plugin and see if it's works for you. otherwise @Cornishman might have an idea on why it's not working.

@adambirds
Copy link

@arabcoders it turns out it was due to the fact that the fix isn't merged into master on @Cornishman's fork and instead in a seperate branch which isn't made clear above, but don't see a reason as to why it isn't in master.

@arabcoders
Copy link
Author

@adambirds : @arabcoders it turns out it was due to the fact that the fix isn't merged into master on @Cornishman's fork and instead in a seperate branch which isn't made clear above, but don't see a reason as to why it isn't in master.

Good catch, I'll go ahead and update the link in Q&A post.

@whitaar
Copy link

whitaar commented Apr 24, 2022

Syncing worked great with hardcoding my plex token in account.py until a recent plex server update to 1.26. I tried Cornishman's fork (the separate branch per @adambirds ) and still nothing. Does it matter that plexonlinetoken from windows registry doesn't match my plex token from the XML files? Scrobbling works, just not syncing collections.

@arabcoders
Copy link
Author

I am sorry everyone, i no longer use this plugin, instead i use this tool i created to do so https://github.com/ArabCoders/watchstate it's basic but works for my own needs.

@whitaar
Copy link

whitaar commented Apr 24, 2022

Wasn't a problem with the plugin, looks like some issues with plex server 1.26. Rolled back to 1.25 and Cornishman's fork is working great.

@esdeka
Copy link

esdeka commented Apr 24, 2022

See #622 (comment)

@CBarbas
Copy link

CBarbas commented Jun 27, 2024

Hi,
this doesnt seem to work anymore by me after the last PLEX update "Version 4.129.1", I checked the token and its fine but it doesnt seem to update anything to TraktTV.

I will add a completely new series and a movie to PLEX library to see what will happened and if it will not work I think I have to move to "https://github.com/Taxel/PlexTraktSync".

@sickyd
Copy link

sickyd commented Jun 28, 2024

@CBarbas I also could not get this working again after a recent PMS update. I just switched to PlexTraktSync. Works a treat.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.