Seitenhierarchie

  Wiki Navigation

    Loading...


 Recently Updated


 Latest Releases

 MediaPortal 1.32
            Releasenews | Download
 MediaPortal 2.5
            Releasenews | Download


Question

How do interact with the Trakt plugin?

Answer

Simply use the following code:

using TraktPlugin.TraktAPI;
using TraktPlugin.TraktAPI.DataStructures;
...
            IEnumerable<traktsearchepisode> myep = TraktAPI.SearchEpisodes("Scars");
            IEnumerable<traktmovie> searchmovie = TraktAPI.SearchMovies("Tron");
            IEnumerable<traktshow> searchshow = TraktAPI.SearchShows("eureka");
            IEnumerable<traktmovie> recmovies = TraktAPI.GetRecommendedMovies();
            IEnumerable<traktmovie> tronrelated = TraktAPI.GetRelatedMovies("tt0084827");
            IEnumerable<traktuserprofile> newfriend = TraktAPI.SearchForFriends("edalex");
</traktuserprofile></traktmovie></traktmovie></traktshow></traktmovie></traktsearchepisode>

   

 

This page has no comments.