Forum
  • Search
  • Member List
  • Calendar
Hello There, Guest! Login Register — Login with Facebook

[PROBLEM] YouTube plugin 4.46 can't login
Thank you for your donation

Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Threaded Mode | Linear Mode
Problem: YouTube plugin 4.46 can't login
14th Sep, 2013, 09:25 PM
Post: #1
CaptainZap Offline
Registered
Posts: 9
Joined: Jan 2013
Reputation: 0
YouTube plugin 4.46 can't login
Hi guys,

I'm having some trouble with logging in the youtube plugin. I've used the same method I always used since I installed Xbian on my RPi and I have no ideea what could be the cause for this issue.
Here is a log where you can see the exact error, and maybe point me to a solution.
I hope I hear back from you guys asap.

Thanks!
Find all posts by this user
Quote this message in a reply
14th Sep, 2013, 09:50 PM
Post: #2
namtih Offline
Tester
Posts: 269
Joined: Dec 2012
Reputation: 28
RE: YouTube plugin 4.46 can't login
Version 446 seems really not the best released version. Many users rollback to 444, as it seems more stable.
Regarding the login issue there are also many reports in the offical thread:
http://forum.xbmc.org/showthread.php?tid=79487&page=350

Personally I really think it's a big shame that such important addon is sooo buggy the last months. Many problems, some crashes from time to time and it's slow. It's really not a good addon.
Find all posts by this user
Quote this message in a reply
15th Sep, 2013, 08:11 PM
Post: #3
CaptainZap Offline
Registered
Posts: 9
Joined: Jan 2013
Reputation: 0
RE: YouTube plugin 4.46 can't login
(14th Sep, 2013 09:50 PM)namtih Wrote:  Version 446 seems really not the best released version. Many users rollback to 444, as it seems more stable.
Regarding the login issue there are also many reports in the offical thread:
http://forum.xbmc.org/showthread.php?tid=79487&page=350

Personally I really think it's a big shame that such important addon is sooo buggy the last months. Many problems, some crashes from time to time and it's slow. It's really not a good addon.

Can you show me where to download a working version for the youtube app ?

Thanks.
Find all posts by this user
Quote this message in a reply
15th Sep, 2013, 08:40 PM
Post: #4
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: YouTube plugin 4.46 can't login
when you go to youtube add-on plug info, there should be a "rollback" option.

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
16th Sep, 2013, 02:15 AM
Post: #5
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: YouTube plugin 4.46 can't login
here you have some older versions as well:

http://ivka57.dyndns-ip.com/add-ons/

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
16th Sep, 2013, 07:11 PM
Post: #6
brantje Offline
Tester
Posts: 305
Joined: Dec 2012
Reputation: 32
RE: YouTube plugin 4.46 can't login
Do you have 2 factor auth on?

XBian Skin Beta Testing
Clock Screensaver

If you liked my help, click on "Thanks" to show your appreciation.
Find all posts by this user
Quote this message in a reply
10th Jan, 2014, 10:17 PM
Post: #7
namecaps Offline
Registered
Posts: 10
Joined: Jan 2014
Reputation: 0
RE: YouTube plugin 4.46 can't login
Hi,

I'm also having problems with login in. I tried all the solutions (disconnecting g+, creating page, setting password for page user) and still get login failed. I'm using youtube 4.4.6, funny thing is that it works correctly on my ATV2, but not on latest xbian. Any ideas? I checked the debug log, but nothing special there. Does anybody still has problems with login in?
Find all posts by this user
Quote this message in a reply
11th Jan, 2014, 03:37 AM
Post: #8
IriDium Offline
Inquisitor
******
Posts: 2,025
Joined: Jan 2013
Reputation: 170
RE: YouTube plugin 4.46 can't login
@namecaps See post #4

Please read before you post
How to post a log file

If you liked my help, click on "Thanks" to show your appreciation.
Find all posts by this user
Quote this message in a reply
12th Jan, 2014, 05:45 PM
Post: #9
namecaps Offline
Registered
Posts: 10
Joined: Jan 2014
Reputation: 0
RE: YouTube plugin 4.46 can't login
(11th Jan, 2014 03:37 AM)IriDium Wrote:  @namecaps See post #4

Hi, thanks, but I don't know what it does have to do with my problem. I cannot rollback, because 4.4.6 is the first version I have installed, not to mention I tried 4.4.3 and 3.4.4 as well and got the same problem. On the other hand youtube on android and atv2 xbmc log me in correctly, however I haven't tried to delete all the data to check if it works for new users as well.

So, any ideas?
Find all posts by this user
Quote this message in a reply
16th Jan, 2014, 04:01 PM
Post: #10
mk01 Offline
Registered
Posts: 2,485
Joined: Mar 2013
Reputation: 209
RE: YouTube plugin 4.46 can't login
I have the same errors on MacOSX.

Open bug report on the official youtube addon site with author.

Please read rules and do a search before you post! . FAQs . How to post log file? . Looking for answers? Please start here
Find all posts by this user
Quote this message in a reply
29th Apr, 2014, 09:51 PM
Post: #11
chochis Offline
Registered
Posts: 33
Joined: Jan 2014
Reputation: 0
RE: YouTube plugin 4.46 can't login
The erros on YouTube plugin, there is two main errors that fixing the files make it work to me:
Problems with the login for not "ASCII" users of YouTube: http://code.google.com/p/youtubexbmc/issues/detail?id=106
On YouTubeCore.py
Right before:
Code:
request = urllib2.Request(link, urllib.urlencode(get("url_data")))
add this line to encode the values first
Code:
params["url_data"] = dict((k, v.encode('utf-8')) for (k, v) in get("url_data").items())

Problems with the login for users with the two steps login of youtube: http://code.google.com/p/youtubexbmc/issues/detail?id=115
On YouTubeLogin.py
Look for text string:
Code:
nick = self.common.parseDOM(ret["content"], "p", attrs={"class": "masthead-expanded-acct-sw-id2"})
Replace that with:
Code:
nick = self.common.parseDOM(ret["content"], "span", attrs={"id": "yt-masthead-user-displayname"})

With those two patches YouTube plugin works for me like a charm.

To see the log of the YouTube plugin go to settins and enable it at the Advanced settings.
Then,
Terminal
tail -f .xbmc/temp/xbmc.log
Find all posts by this user
Quote this message in a reply
« Next Oldest | Next Newest »
Post Reply 


Possibly Related Threads...
Thread: Author Replies Views: Last Post
  [SOLVED] Youtube addon login issue fixed [Add-on 4.4.1 Update] Pihkal 7 31,348 5th Jan, 2013 04:57 AM
Last Post: rikardo1979

  • View a Printable Version
  • Send this Thread to a Friend
  • Subscribe to this thread
Forum Jump:

Current time: 14th May, 2025, 01:41 PM Powered By MyBB, © 2002-2025 MyBB Group.