For a client we need to show Likes post from Youtube on their website. I have looked at the code from the JA Social plugin and see it is only possible to show uploaded video’s at the moment.
It would be great if you can also import liked youtube items for a user. For this the only thing that has to be done is:
– add option in youtube profile for importing uploaded video’s or events (liked posts e.g.)
– add option to insert API key of the user in the plugin settings screen within a youtube import profile
– switch the link in the plugin on line 564 if
$etid = str_replace(‘http://gdata.youtube.com/feeds/base/videos/’,”,$dt->id->{‘$t’});
to
$etid = str_replace(‘http://gdata.youtube.com/feeds/base/events?author=&v=2&key=’,”,$dt->id->{‘$t’});
You probably need to change some other small stuff but these are the biggest changes I think! I don’t know if it is easy to combine profiles if you want to import “events” and “uploads” from the same user, this would be the best option I think.